From 1112312c93415a9b283af24bf6d42890ae9c06e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 14:17:04 +0000 Subject: [PATCH] fix(dependabot): bump the github-actions-dependencies group across 5 directories with 4 updates Bumps the github-actions-dependencies group with 2 updates in the / directory: [actions/setup-node](https://github.com/actions/setup-node) and [actions/setup-go](https://github.com/actions/setup-go). Bumps the github-actions-dependencies group with 2 updates in the /.github/workflows directory: [actions/setup-node](https://github.com/actions/setup-node) and [actions/setup-go](https://github.com/actions/setup-go). Bumps the github-actions-dependencies group with 2 updates in the /shared-actions/setup-node-with-cache directory: [actions/setup-node](https://github.com/actions/setup-node) and [pnpm/action-setup](https://github.com/pnpm/action-setup). Bumps the github-actions-dependencies group with 1 update in the /shared-actions/slack-deployment-notification directory: [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action). Bumps the github-actions-dependencies group with 1 update in the /workflow-templates directory: [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `actions/setup-go` from 6 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6...v7) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `actions/setup-go` from 6 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6...v7) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `pnpm/action-setup` from 4 to 6 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4...v6) Updates `slackapi/slack-github-action` from 3 to 4 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/slackapi/slack-github-action/compare/v3...v4) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: pnpm/action-setup dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: slackapi/slack-github-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-standard-checks-workflow.yaml | 2 +- .github/workflows/go-lint-workflow.yaml | 6 +++--- .github/workflows/graphql-generate-persisted-operations.yml | 2 +- shared-actions/setup-node-with-cache/action.yml | 4 ++-- shared-actions/slack-deployment-notification/action.yml | 4 ++-- workflow-templates/frontend-canary-cleanup.yml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-standard-checks-workflow.yaml b/.github/workflows/ci-standard-checks-workflow.yaml index e233709..147e550 100644 --- a/.github/workflows/ci-standard-checks-workflow.yaml +++ b/.github/workflows/ci-standard-checks-workflow.yaml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v7 with: fetch-depth: 0 - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: 20 - name: CI Standard Checks diff --git a/.github/workflows/go-lint-workflow.yaml b/.github/workflows/go-lint-workflow.yaml index bd173af..ef438ae 100644 --- a/.github/workflows/go-lint-workflow.yaml +++ b/.github/workflows/go-lint-workflow.yaml @@ -73,21 +73,21 @@ jobs: - name: Setup Go (provided only go-version input, or both) if: "${{ (inputs.go-version != '' && inputs.go-version-file == '') || (inputs.go-version != '' && inputs.go-version-file != '') }}" - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: ${{ inputs.go-version }} cache: false - name: Setup Go (provided only go-version-file input) if: "${{ inputs.go-version == '' && inputs.go-version-file != '' }}" - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version-file: ${{ inputs.go-version-file }} cache: false - name: Setup Go (provided neither go-version-file nor go-version input) if: "${{ inputs.go-version == '' && inputs.go-version-file == '' }}" - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: "stable" cache: false diff --git a/.github/workflows/graphql-generate-persisted-operations.yml b/.github/workflows/graphql-generate-persisted-operations.yml index c36a597..f54da75 100644 --- a/.github/workflows/graphql-generate-persisted-operations.yml +++ b/.github/workflows/graphql-generate-persisted-operations.yml @@ -39,7 +39,7 @@ jobs: uses: actions/checkout@v7 - name: Set up Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 22 diff --git a/shared-actions/setup-node-with-cache/action.yml b/shared-actions/setup-node-with-cache/action.yml index 408a32c..8bbd89e 100644 --- a/shared-actions/setup-node-with-cache/action.yml +++ b/shared-actions/setup-node-with-cache/action.yml @@ -65,7 +65,7 @@ runs: - name: Set up Node.js with setup-node if: ${{ inputs.use-asdf != 'true' }} - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ inputs.node-version }} @@ -73,7 +73,7 @@ runs: # Skip when asdf manages pnpm via .tool-versions. - name: Set up pnpm if: ${{ inputs.package-manager == 'pnpm' && inputs.use-asdf != 'true' }} - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: run_install: false diff --git a/shared-actions/slack-deployment-notification/action.yml b/shared-actions/slack-deployment-notification/action.yml index f50b321..8a4dc29 100644 --- a/shared-actions/slack-deployment-notification/action.yml +++ b/shared-actions/slack-deployment-notification/action.yml @@ -52,7 +52,7 @@ runs: - name: Send success notification if: ${{ inputs.deployment-status == 'success' }} - uses: slackapi/slack-github-action@v3 + uses: slackapi/slack-github-action@v4 with: method: chat.postMessage token: ${{ inputs.SLACK_BOT_TOKEN }} @@ -65,7 +65,7 @@ runs: - name: Send failure notification if: ${{ inputs.deployment-status == 'failure' }} - uses: slackapi/slack-github-action@v3 + uses: slackapi/slack-github-action@v4 with: method: chat.postMessage token: ${{ inputs.SLACK_BOT_TOKEN }} diff --git a/workflow-templates/frontend-canary-cleanup.yml b/workflow-templates/frontend-canary-cleanup.yml index 253546f..0778215 100644 --- a/workflow-templates/frontend-canary-cleanup.yml +++ b/workflow-templates/frontend-canary-cleanup.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v7 - name: Set up Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 12