From 7d086e4015b173277e56c5d3a0c0d9857e2dc151 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 17:04:58 +0000 Subject: [PATCH] Bump the gh-actions group across 1 directory with 3 updates Bumps the gh-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-java](https://github.com/actions/setup-java) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/setup-java` from 5 to 5.6.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v5...v5.6.0) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/setup-java dependency-version: 5.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 14 +++++++------- .github/workflows/release.yaml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6f2848e..559a20d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -29,10 +29,10 @@ jobs: fail-fast: false runs-on: ${{ matrix.os.image }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: echo " " >> pom.xml # make sure the cache is slightly different for these runners - name: Set up JDK - uses: actions/setup-java@v5 + uses: actions/setup-java@v5.6.0 with: java-version: ${{ matrix.jdk }} distribution: 'temurin' @@ -46,17 +46,17 @@ jobs: DELAY_FACTOR: 3 - name: Upload coverage to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 env: CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }} checker-framework: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: echo " " >> pom.xml # make sure the cache is slightly different for the checker framework - name: Set up JDK 11 - uses: actions/setup-java@v5 + uses: actions/setup-java@v5.6.0 with: java-version: 11 distribution: 'temurin' @@ -67,9 +67,9 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up JDK 11 - uses: actions/setup-java@v5 + uses: actions/setup-java@v5.6.0 with: java-version: 11 distribution: 'temurin' diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f4fb5c2..975a033 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,12 +9,12 @@ jobs: publish: runs-on: macos-latest # for now build on macos for the jni steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # build jni libs on osx - run: ./update-rust-jni-libs.sh -r - - uses: actions/setup-java@v5 + - uses: actions/setup-java@v5.6.0 with: java-version: '11' distribution: 'temurin'