Skip to content
Open
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout GitHub sources
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
outputs:
all_directories: ${{ steps.all-files.outputs.folders_no_base_path }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
ZILLA_VERSION: develop-SNAPSHOT
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
sparse-checkout: examples/${{ matrix.dir }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

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

- name: Setup JDK 20
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/links-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Link Checker
uses: lycheeverse/lychee-action@v2.7.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo "https://x-access-token:${{ secrets.GITFLOW_RELEASES_TOKEN }}@github.com" > ~/.git-credentials

- name: Checkout sources on develop
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: develop
fetch-depth: 0
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:

steps:
- name: Checkout GitHub sources
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: release/${{ inputs.version }}
fetch-depth: 0
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
echo "https://x-access-token:${{ secrets.GITFLOW_RELEASES_TOKEN }}@github.com" > ~/.git-credentials

- name: Checkout GitHub sources on release branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: release/${{ inputs.version }}
fetch-depth: 0
Expand Down
Loading