Skip to content

Commit b7aa562

Browse files
build(GitHub Actions): Update Node version to 24 (#2312)
Update Node version to 24 and actions checkout to v6
1 parent 3ed1503 commit b7aa562

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/code-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Configure AWS Credentials
14-
uses: aws-actions/configure-aws-credentials@v1
14+
uses: aws-actions/configure-aws-credentials@v6
1515
with:
1616
aws-access-key-id: ${{ secrets.aws_key}}
17-
aws-secret-access-key: ${{ secrets.aws_secret_key}}
17+
aws-secret-access-key: ${{ secrets.aws_secret_key }}
1818
aws-region: us-west-1
1919
- name: Run CodeBuild
2020
id: code-build

.github/workflows/generate-messages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node-versions: [20.x]
12+
node-versions: [24.x]
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v6
1515
with:
1616
ref: ${{ github.head_ref || github.ref_name }}
1717
fetch-depth: 0
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
- name: Install dependencies

.github/workflows/publish-docker-image-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out the repo
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v6
1414

1515
- name: Log in to Docker Hub
1616
uses: docker/login-action@v2

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node-version: [20.x]
12+
node-version: [24.x]
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: Setup Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
- name: Install dependencies

.github/workflows/test-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [20.x]
11+
node-version: [24.x]
1212
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v6
1515
- name: Use Node.js ${{ matrix.node-version }}
16-
uses: actions/setup-node@v1
16+
uses: actions/setup-node@v6
1717
with:
1818
node-version: ${{ matrix.node-version }}
1919
- run: |

0 commit comments

Comments
 (0)