Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-standard-checks-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-lint-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions shared-actions/setup-node-with-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ 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 }}

# pnpm must be installed before Node setup so setup-node can wire pnpm's built-in cache.
# 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

Expand Down
4 changes: 2 additions & 2 deletions shared-actions/slack-deployment-notification/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/frontend-canary-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down