mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 19:07:54 +01:00
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
d77e956373
commit
de75ecfbfd
6 changed files with 7 additions and 7 deletions
2
.github/workflows/build_container.yml
vendored
2
.github/workflows/build_container.yml
vendored
|
|
@ -26,7 +26,7 @@ jobs:
|
|||
statuses: write
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
|
|
|
|||
2
.github/workflows/build_iso.yml
vendored
2
.github/workflows/build_iso.yml
vendored
|
|
@ -32,7 +32,7 @@ jobs:
|
|||
matrix: ${{ fromJson(needs.load_vars.outputs.BUILD_MATRIX) }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
|
|
|
|||
2
.github/workflows/test_deployment.yml
vendored
2
.github/workflows/test_deployment.yml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
|||
matrix: ${{ fromJson(needs.load_vars.outputs.BUILD_MATRIX) }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
|
|
|
|||
2
.github/workflows/test_iso.yml
vendored
2
.github/workflows/test_iso.yml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
|||
matrix: ${{ fromJson(needs.load_vars.outputs.BUILD_MATRIX) }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
|
|
|
|||
2
.github/workflows/test_repo.yml
vendored
2
.github/workflows/test_repo.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
contents: read
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Run test
|
||||
run: |
|
||||
|
|
|
|||
4
.github/workflows/update_wiki.yml
vendored
4
.github/workflows/update_wiki.yml
vendored
|
|
@ -18,10 +18,10 @@ jobs:
|
|||
run: |
|
||||
sudo apt install -y make rsync
|
||||
# Checkout Main Repo
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
# Checkout Wiki Repo
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
with:
|
||||
repository: ${{github.repository}}.wiki
|
||||
persist-credentials: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue