This is an automated email from the ASF dual-hosted git repository. robbie pushed a commit to branch 1.x in repository https://gitbox.apache.org/repos/asf/qpid-jms.git
The following commit(s) were added to refs/heads/1.x by this push: new 9cd38801 update actions to resolve deprecation warnings, and bump OS version 9cd38801 is described below commit 9cd38801899b98c9906bca6466faa9dfb4ac804e Author: Robbie Gemmell <rob...@apache.org> AuthorDate: Tue Feb 13 10:21:36 2024 +0000 update actions to resolve deprecation warnings, and bump OS version (cherry picked from commit c14f5fa7f9a4e2bb5bfc5b578371524c0e364a56) --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d40c6f6f..46989a7a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,15 +4,15 @@ on: [push, pull_request, workflow_dispatch] jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: java: [ 11, 17, 21 ] steps: - - uses: actions/checkout@v3 - - uses: actions/cache@v3 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -20,7 +20,7 @@ jobs: ${{ runner.os }}-maven- - name: Install JDK ${{ matrix.java }} - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: ${{ matrix.java }} distribution: 'temurin' @@ -34,7 +34,7 @@ jobs: - name: Upload Test Logs On Failure if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: surefire-reports-jdk-${{ matrix.java }} path: surefire-reports-jdk-${{ matrix.java }}.tar.gz --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org