From 106fa253cb23a8769b1951586800ec021c523cfa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 09:42:49 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- .github/workflows/update-conformance-test-reports.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a2bd7dd..a6a6f27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,11 +19,11 @@ jobs: java_version: [17, 21, 25] steps: - name: Check out jspecify-reference checker - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: jspecify-reference-checker - name: Check out jspecify - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: jspecify/jspecify path: jspecify @@ -33,13 +33,13 @@ jobs: # I am not sure what the best setup is - at this point initialize-project # does not do anything useful. - name: Check out jspecify/jdk - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: jspecify/jdk path: jdk # Clone the EISOP CF if necessary: - name: Check out eisop/checker-framework - uses: actions/checkout@v6 + uses: actions/checkout@v7 if: ${{ env.EISOP_RELEASE != 'true' }} with: repository: eisop/checker-framework @@ -89,7 +89,7 @@ jobs: if: github.repository == 'jspecify/jspecify-reference-checker' && github.ref_name == 'main' && github.event_name == 'push' steps: - name: Check out the code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Java uses: actions/setup-java@v5 with: diff --git a/.github/workflows/update-conformance-test-reports.yml b/.github/workflows/update-conformance-test-reports.yml index a45252d..007884f 100644 --- a/.github/workflows/update-conformance-test-reports.yml +++ b/.github/workflows/update-conformance-test-reports.yml @@ -25,13 +25,13 @@ jobs: distribution: temurin java-version: 17 - name: Check out JSpecify - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: jspecify/jspecify ref: main path: jspecify - name: Check out the Reference Checker - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 path: reference-checker