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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-java@v4
with:
java-version: '25'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/incrementals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout (full history)
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0 # git-changelist-maven-extension needs the full commit count

Expand All @@ -30,7 +30,7 @@ jobs:
cache: maven

- name: Checkout existing Maven repo from gh-pages
uses: actions/checkout@v4
uses: actions/checkout@v7
continue-on-error: true # first run: gh-pages does not exist yet
with:
ref: gh-pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
native-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Set up GraalVM for JDK 25
uses: graalvm/setup-graalvm@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout (full history)
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0 # match the incremental version the commit was published under
- name: Set up JDK 25
Expand Down
Loading