From 1db39b74f8cf5cbac6d6585eb2641d6658d8c1ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 13:02:36 +0000 Subject: [PATCH] build(deps): bump actions/checkout in the github-actions group Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release-npm.yml | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f251631..157bac6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,10 +11,10 @@ jobs: name: "IntentProof CI: Build and Test" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Checkout intentproof-tools (SPEC_REF source) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: IntentProof/intentproof-tools ref: main @@ -31,7 +31,7 @@ jobs: echo "ref=$ref" >> "$GITHUB_OUTPUT" - name: Checkout intentproof-spec at pinned ref - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: IntentProof/intentproof-spec ref: ${{ steps.spec_ref.outputs.ref }} diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 8e5f3df..efbb99f 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -36,12 +36,12 @@ jobs: name: "IntentProof Release: Test npm Package" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ github.event_name == 'workflow_dispatch' && inputs.release_ref || github.ref }} - name: Checkout intentproof-tools (SPEC_REF source) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: IntentProof/intentproof-tools ref: main @@ -58,7 +58,7 @@ jobs: echo "ref=$ref" >> "$GITHUB_OUTPUT" - name: Checkout intentproof-spec at pinned ref - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: IntentProof/intentproof-spec ref: ${{ steps.spec_ref.outputs.ref }} @@ -92,7 +92,7 @@ jobs: release_version: ${{ steps.release.outputs.release_version }} npm_dist_tag: ${{ steps.release.outputs.npm_dist_tag }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ github.event_name == 'workflow_dispatch' && inputs.release_ref || github.ref }} @@ -172,7 +172,7 @@ jobs: contents: read id-token: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ needs.pack.outputs.release_ref }}