From 3515d60fc6074b1d29e64febbf568f594c54a42c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 31 May 2026 11:03:30 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 4 to 6 - [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/v4...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ee6b54..f2eefa7 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@v4 + - uses: actions/checkout@v6 - name: Checkout intentproof-tools (SPEC_REF source) - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: IntentProof/intentproof-tools ref: main @@ -31,13 +31,13 @@ jobs: echo "ref=$ref" >> "$GITHUB_OUTPUT" - name: Checkout intentproof-spec at pinned ref - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: IntentProof/intentproof-spec ref: ${{ steps.spec_ref.outputs.ref }} path: intentproof-spec - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.11'