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
6 changes: 3 additions & 3 deletions .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ needs.check.outputs.repo }}
ref: ${{ needs.check.outputs.ref }}
Expand All @@ -82,7 +82,7 @@ jobs:
matrix: ${{fromJson(needs.matrix.outputs.matrix)}}
fail-fast: false
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ needs.check.outputs.repo }}
ref: ${{ needs.check.outputs.ref }}
Expand All @@ -104,7 +104,7 @@ jobs:
runs-on: ubuntu-latest
needs: [check, build]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ needs.check.outputs.repo }}
ref: ${{ needs.check.outputs.ref }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: Check code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
Expand All @@ -58,7 +58,7 @@ jobs:
java: 20
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
Expand All @@ -77,7 +77,7 @@ jobs:
profiles: ['native', 'native,native-exported']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: graalvm/setup-graalvm@v1
with:
java-version: ${{ matrix.java }}
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
java: 21
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: uraimo/run-on-arch-action@v3
name: Test
with:
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
name: test external amalgamation
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
Expand All @@ -189,10 +189,10 @@ jobs:
- name: Print inputs
run: |
echo "Perform release: ${{ inputs.perform_release }}"
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: github.event_name == 'push' || inputs.perform_release != true
# when performing a release we need the full git history to generate the changelog
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: inputs.perform_release
with:
fetch-depth: 0
Expand Down
Loading