Skip to content

Commit cf8d1f5

Browse files
authored
chore(ci): bump GitHub actions to use node 24 (#7339)
1 parent 8515366 commit cf8d1f5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/codegen-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
java: [17]
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: gradle/actions/wrapper-validation@v4
2626

2727
- name: Set up JDK ${{ matrix.java }}
28-
uses: actions/setup-java@v4
28+
uses: actions/setup-java@v5
2929
with:
3030
java-version: ${{ matrix.java }}
3131
distribution: 'corretto'

.github/workflows/commit-message-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
commitlint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616
- uses: wagoid/commitlint-github-action@v4

.github/workflows/pre-commit-hooks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
run-pre-commit-hooks:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: set up Node.js
15-
uses: actions/setup-node@v3
15+
uses: actions/setup-node@v5
1616
with:
1717
node-version: '18'
1818
cache: 'yarn'

scripts/generate-clients/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Update this commit when taking up new changes from smithy-typescript.
22
module.exports = {
33
// Use full commit hash as we explicitly fetch it.
4-
SMITHY_TS_COMMIT: "32be22a8012efec80528b583136d3f48f5a6d0d4",
4+
SMITHY_TS_COMMIT: "a4279cac7a5dbbf67f63df7d18557b0171aabb44",
55
};
66

77
if (module.exports.SMITHY_TS_COMMIT.length < 40) {

0 commit comments

Comments
 (0)