diff --git a/.github/workflows/codegen-ci.yml b/.github/workflows/codegen-ci.yml index c4cefdc2af86..56e8da8b12b5 100644 --- a/.github/workflows/codegen-ci.yml +++ b/.github/workflows/codegen-ci.yml @@ -22,15 +22,18 @@ jobs: steps: - uses: actions/checkout@v5 - - uses: gradle/actions/wrapper-validation@v4 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v5 with: java-version: ${{ matrix.java }} distribution: 'corretto' - cache: gradle - + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v5 + with: + cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} + - name: build and publish smithy-typescript run: | node ./scripts/generate-clients/build-smithy-typescript-ci.js diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js index 6d26a2107002..c4f690b886f7 100644 --- a/scripts/generate-clients/config.js +++ b/scripts/generate-clients/config.js @@ -1,7 +1,7 @@ // Update this commit when taking up new changes from smithy-typescript. module.exports = { // Use full commit hash as we explicitly fetch it. - SMITHY_TS_COMMIT: "ceb0a0d05333af401a18a98428b0072c401ef241", + SMITHY_TS_COMMIT: "30c9c15812bb1ddf4726baf27e058dfe7d97022a", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) {