From f3934eca6473b76870f0a22281a2e71a4f2f5c38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 22:46:38 +0000 Subject: [PATCH] chore: bump the action-dependencies-version group across 2 directories with 3 updates Bumps the action-dependencies-version group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [docker/login-action](https://github.com/docker/login-action). Bumps the action-dependencies-version group with 1 update in the /.github/actions/setup directory: [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 7.0.0 to 7.0.1 - [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/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1) Updates `docker/login-action` from 4.4.0 to 4.6.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/af1e73f918a031802d376d3c8bbc3fe56130a9b0...dbcb813823bdd20940b903addbd779551569679f) Updates `actions/setup-node` from 6.4.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e...820762786026740c76f36085b0efc47a31fe5020) Updates `actions/setup-node` from 6.4.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e...820762786026740c76f36085b0efc47a31fe5020) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: action-dependencies-version - dependency-name: docker/login-action dependency-version: 4.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: action-dependencies-version - dependency-name: actions/setup-node dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies-version - dependency-name: actions/setup-node dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies-version ... Signed-off-by: dependabot[bot] --- .github/actions/setup/action.yaml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/cspell-action.yml | 2 +- .github/workflows/publish-docker-image.yml | 4 ++-- .github/workflows/release-please.yml | 2 +- .github/workflows/test.yml | 4 ++-- .github/workflows/update-cspell.yml | 2 +- .github/workflows/update-dependencies.yml | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index 7a7616e..5f5af48 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -9,7 +9,7 @@ runs: using: 'composite' steps: - name: Use Node.js ${{ inputs.node-version }} - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6 with: registry-url: 'https://registry.npmjs.org' node-version: ${{ inputs.node-version }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index e5f6db8..2f556bd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v5 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5 with: # Make sure it goes back far enough to find where the branch split from main fetch-depth: 20 diff --git a/.github/workflows/cspell-action.yml b/.github/workflows/cspell-action.yml index 5ea619f..f64f75e 100644 --- a/.github/workflows/cspell-action.yml +++ b/.github/workflows/cspell-action.yml @@ -10,7 +10,7 @@ jobs: cspell: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v5 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5 - uses: streetsidesoftware/cspell-action@v8 with: files: '.' diff --git a/.github/workflows/publish-docker-image.yml b/.github/workflows/publish-docker-image.yml index 3b9141b..0ca3262 100644 --- a/.github/workflows/publish-docker-image.yml +++ b/.github/workflows/publish-docker-image.yml @@ -44,7 +44,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v5 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5 with: ref: ${{ inputs.ref || github.ref }} @@ -54,7 +54,7 @@ jobs: echo CSPELL_VERSION=$(jq -r ".dependencies.cspell | sub(\"[_^]\"; \"\")" package.json) >> "$GITHUB_OUTPUT" - name: Log in to the Container registry - uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 + uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 86e19c0..093ce10 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -33,7 +33,7 @@ jobs: id-token: write steps: # The logic below handles the npm publication: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v5 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5 with: ref: ${{ needs.release-please.outputs.tag_name }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4afd99b..46ba39c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: node-version: 24.x steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v5 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5 - name: Setup uses: ./.github/actions/setup @@ -43,6 +43,6 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v5 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5 - run: docker build -t cspell . - run: docker run -v $(pwd):/workdir cspell . diff --git a/.github/workflows/update-cspell.yml b/.github/workflows/update-cspell.yml index 4dd11c5..bc26594 100644 --- a/.github/workflows/update-cspell.yml +++ b/.github/workflows/update-cspell.yml @@ -33,7 +33,7 @@ jobs: echo "$EVENT_INPUTS" - name: Checkout code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v5 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5 with: ref: ${{ env.REF_BRANCH }} diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index ecc9064..41fa860 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -33,7 +33,7 @@ jobs: echo "$EVENT_INPUTS" - name: Checkout code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v5 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5 with: ref: ${{ env.REF_BRANCH }}