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