Skip to content
Closed
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
1 change: 1 addition & 0 deletions .github/workflows/ci-tls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
with:
distribution: corretto
java-version: 17
cache: gradle
- name: Stop nginx
run: sudo systemctl stop nginx
- name: Checkout smithy-rs
Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/pull-request-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,13 @@ jobs:
bot-message: ${{ steps.generate-preview.outputs.bot-message }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
name: Gradle Cache
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
# JDK is needed to generate code
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: corretto
java-package: jdk
java-version: ${{ env.java_version }}
cache: gradle
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.rust_nightly_version }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ jobs:
with:
distribution: temurin
java-version: '17'
cache: gradle
- name: Check if publishing is needed
id: check-publish
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-sdk-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
distribution: corretto
java-package: jdk
java-version: 17
cache: gradle
# Rust is only used to `rustfmt` the generated code; doesn't need to match MSRV
- name: Set up Rust
uses: dtolnay/rust-toolchain@master
Expand Down
Loading