Skip to content
Merged
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
20 changes: 10 additions & 10 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Check editorconfig
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: editorconfig-checker/action-editorconfig-checker@v2
Expand All @@ -21,7 +21,7 @@ jobs:
name: Security validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: gradle/actions/wrapper-validation@v6
osv-scanner:
runs-on: ubuntu-latest
Expand All @@ -34,7 +34,7 @@ jobs:
- isthmus
- isthmus-cli
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-java@v5
with:
java-version: '17'
Expand All @@ -47,7 +47,7 @@ jobs:
name: Build and Test Java
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: recursive
- name: Set up JDK 17
Expand All @@ -59,15 +59,15 @@ jobs:
uses: gradle/actions/setup-gradle@v6
- name: Build with Gradle
run: |
# fetch submodule tags since actions/checkout@v6 does not
# fetch submodule tags since actions/checkout@v7 does not
git submodule foreach 'git fetch --unshallow || true'

./gradlew build --rerun-tasks
integration:
name: Integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: recursive
- name: Set up JDK 17
Expand All @@ -79,7 +79,7 @@ jobs:
uses: gradle/actions/setup-gradle@v6
- name: Build with Gradle
run: |
# fetch submodule tags since actions/checkout@v6 does not
# fetch submodule tags since actions/checkout@v7 does not
git submodule foreach 'git fetch --unshallow || true'

./gradlew integrationTest
Expand All @@ -93,7 +93,7 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: recursive
- uses: actions/setup-java@v5
Expand All @@ -106,7 +106,7 @@ jobs:
run: java -version
- name: Build with Gradle
run: |
# fetch submodule tags since actions/checkout@v6 does not
# fetch submodule tags since actions/checkout@v7 does not
git submodule foreach 'git fetch --unshallow || true'

./gradlew nativeCompile
Expand All @@ -127,7 +127,7 @@ jobs:
name: Dry-run release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_title.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: "24"
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
sparse-checkout: |
.commitlintrc.js
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: recursive
- uses: actions/setup-java@v5
Expand All @@ -32,7 +32,7 @@ jobs:
run: java -version
- name: Build with Gradle
run: |
# fetch submodule tags since actions/checkout@v6 does not
# fetch submodule tags since actions/checkout@v7 does not
git submodule foreach 'git fetch --unshallow || true'

./gradlew nativeCompile
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
client-id: ${{ secrets.RELEASER_ID }}
private-key: ${{ secrets.RELEASER_KEY }}
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ steps.app-token.outputs.token }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Sanity Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Validate credentials for Sonatype and Signing
Expand Down
Loading