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
10 changes: 5 additions & 5 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
java-version: '21'

- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
java-version: '21'

- name: Clone BPM
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: InseeFr/BPM
path: bpm
Expand All @@ -81,7 +81,7 @@ jobs:
mvn clean install --no-transfer-progress
cd ..

- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build app
run: |
git fetch origin main
Expand All @@ -99,7 +99,7 @@ jobs:
if: needs.check-version.outputs.should_run_next_job == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
fetch-depth: 0
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
needs: [ check-version, create-release ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Download uploaded jar
uses: actions/download-artifact@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >>$GITHUB_OUTPUT
id: extract_branch

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ steps.extract_branch.outputs.branch }}

Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- build-snapshot
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Download uploaded jar
uses: actions/download-artifact@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up JDK 21
uses: actions/setup-java@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contains(github.event.pull_request.labels.*.name, 'Version Update - Prod')
steps:
- name: Checkout PR branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scheduled-version-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: genesis
ref: main
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
runs-on: ubuntu-latest
needs: update-version
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Wait for merged version commit
run: |
echo "Fetching main branch..."
Expand Down
Loading