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
8 changes: 4 additions & 4 deletions .github/workflows/cache_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
matrix:
java_variant: [ "8", "8-orcl", "8-zing", "8-j9", "8-ibm", "11", "11-zing", "11-j9", "17", "17-zing", "17-j9", "17-graal", "21", "21-j9", "21-zing", "21-graal", "25", "25-graal" ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Try restore cache JDK ${{ matrix.java_variant }}
id: cache-jdk
uses: actions/cache/restore@v4
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
matrix:
java_variant: [ "8-librca", "11-librca", "17-librca", "21-librca", "25-librca" ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup OS
run: |
# This needs to be done early because alpine does not have bash and tar is also iffy
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
matrix:
java_variant: [ "8", "8-zing", "8-j9", "11", "11-zing", "11-j9", "17", "17-zing", "17-j9", "17-graal", "21", "21-j9", "21-zing", "21-graal", "25", "25-graal" ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Cache JDK ${{ matrix.java_variant }}
id: cache-jdk
uses: actions/cache/restore@v4
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
matrix:
java_variant: [ "8-librca", "11-librca", "17-librca", "21-librca", "25-librca" ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup OS
run: |
# This needs to be done early because alpine does not have bash and tar is also iffy
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
needs: check-for-pr
if: needs.check-for-pr.outputs.skip != 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Setup Java
uses: actions/setup-java@v3
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
needs: check-for-pr
if: needs.check-for-pr.outputs.skip != 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Setup Java
uses: actions/setup-java@v3
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
actions: read
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Generate test summary
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
HEAD_REF: ${{ github.head_ref }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: System setup
run: |
sudo apt-get update
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
if: (startsWith(github.event.ref, 'refs/tags/v_') || inputs.release_tag != '') && !endsWith(github.event.ref, '-SNAPSHOT')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: webfactory/ssh-agent@v0.9.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-validated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
release_branch: ${{ steps.compute-version.outputs.release_branch }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
echo "enabled=false" >> $GITHUB_OUTPUT
fi
fi
- uses: actions/checkout@v3
- uses: actions/checkout@v6
if: steps.set_enabled.outputs.enabled == 'true'
- name: Cache Gradle Wrapper Binaries
if: steps.set_enabled.outputs.enabled == 'true'
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
apk update && apk add curl moreutils wget hexdump linux-headers bash make g++ clang git cppcheck jq cmake gtest-dev gmock tar binutils >/dev/null
# Install debug symbols for musl libc
apk add musl-dbg
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Cache Gradle Wrapper Binaries
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
echo "enabled=false" >> $GITHUB_OUTPUT
fi
fi
- uses: actions/checkout@v3
- uses: actions/checkout@v6
if: steps.set_enabled.outputs.enabled == 'true'
- name: Cache Gradle Wrapper Binaries
if: steps.set_enabled.outputs.enabled == 'true'
Expand Down Expand Up @@ -397,7 +397,7 @@ jobs:
labels: arm-4core-linux-ubuntu24.04
timeout-minutes: 180
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Cache Gradle Wrapper Binaries
uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upstream-tracker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Setup git
run: |
Expand Down
Loading