Skip to content

Commit 9986ee4

Browse files
authored
chore(ci): use gradle/actions/setup-gradle for setting up gradle (#7397)
1 parent 5befda8 commit 9986ee4

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/codegen-ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,18 @@ jobs:
2222

2323
steps:
2424
- uses: actions/checkout@v5
25-
- uses: gradle/actions/wrapper-validation@v4
2625

2726
- name: Set up JDK ${{ matrix.java }}
2827
uses: actions/setup-java@v5
2928
with:
3029
java-version: ${{ matrix.java }}
3130
distribution: 'corretto'
32-
cache: gradle
33-
31+
32+
- name: Setup Gradle
33+
uses: gradle/actions/setup-gradle@v5
34+
with:
35+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
36+
3437
- name: build and publish smithy-typescript
3538
run: |
3639
node ./scripts/generate-clients/build-smithy-typescript-ci.js

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: "ceb0a0d05333af401a18a98428b0072c401ef241",
4+
SMITHY_TS_COMMIT: "30c9c15812bb1ddf4726baf27e058dfe7d97022a",
55
};
66

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

0 commit comments

Comments
 (0)