From c83ccb4ed7b7b94852a803315968bd8e6b7fe189 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Jul 2026 03:27:46 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/nodejs.yml | 14 +++++++------- .github/workflows/release.yml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6777e16..65004d6 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -10,7 +10,7 @@ jobs: audit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Use Node.js 24 uses: actions/setup-node@v4 with: @@ -33,7 +33,7 @@ jobs: matrix: node-version: [22, 24, 26] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: @@ -71,7 +71,7 @@ jobs: # they still run on push to master and on non-Dependabot PRs. if: github.actor != 'dependabot[bot]' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v4 with: @@ -98,7 +98,7 @@ jobs: # See "Examples Smoke": skip on Dependabot PRs (no AWS secrets). if: github.actor != 'dependabot[bot]' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v4 with: @@ -133,7 +133,7 @@ jobs: # See "Examples Smoke": skip on Dependabot PRs (no AWS secrets). if: github.actor != 'dependabot[bot]' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v4 with: @@ -168,7 +168,7 @@ jobs: if: github.ref == 'refs/heads/master' && github.event_name == 'push' needs: [test, smoke-tests, validation-tests, performance-tests] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} @@ -222,7 +222,7 @@ jobs: matrix: node-version: [22, 24, 26] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b3c190..0532bc1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: if: "!contains(github.event.head_commit.message, 'skip ci')" steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0