This is an automated email from the ASF dual-hosted git repository. jungm pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/johnzon.git
The following commit(s) were added to refs/heads/master by this push: new 2d322e1c Bump actions/checkout and actions/setup-java to v4 See https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ 2d322e1c is described below commit 2d322e1cce41884050de522943a880acf5540453 Author: Markus Jung <ju...@apache.org> AuthorDate: Tue Feb 6 14:31:33 2024 +0100 Bump actions/checkout and actions/setup-java to v4 See https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 99cb8ca4..19cb2ddd 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -14,9 +14,9 @@ jobs: dist: [ 'zulu' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: ${{ matrix.jdk }} distribution: ${{ matrix.dist }}