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
4 changes: 2 additions & 2 deletions .github/workflows/build-image-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ jobs:
### The publish and periodic rebuilds are based on the latest stable github release tag
- name: Checkout latest Github Release tag (${{ inputs.git_latest_release_tag }}) ⚡️
if: inputs.publish_to_registry == 'true'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.git_latest_release_tag }}

### The CI is based on the main branch
- name: Checkout Repo ⚡️
if: inputs.publish_to_registry == 'false'
uses: actions/checkout@v4
uses: actions/checkout@v5

### Common steps between CI and Publish
- name: Free up disk space 📦
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
matrix: ${{ steps.ci-versions.outputs.matrix }}
steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Get CI versions matrix 📥
id: ci-versions
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
tag_name: ${{ steps.git-release-tag.outputs.tag_name }}
steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Get latest GitHub Release tag name 📥
id: git-release-tag
Expand All @@ -77,7 +77,7 @@ jobs:
matrix: ${{ steps.release-versions.outputs.matrix }}
steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Get release versions matrix 📥
id: release-versions
Expand Down
Loading