Skip to content

Commit 0e37e7c

Browse files
build(deps): 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](actions/checkout@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] <[email protected]>
1 parent f56fa50 commit 0e37e7c

19 files changed

+36
-36
lines changed

.github/workflows/build-devcontainer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
packages: write
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Set up Docker Buildx
2222
uses: docker/setup-buildx-action@v3
2323
- name: Login to the registry

.github/workflows/build-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
shell: bash
4848
steps:
4949
- name: Checkout
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
ref: ${{ inputs.ref }}
5353
- name: Set safe directory (since container is root and not user 1001)

.github/workflows/build-shell-ui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
ref: ${{ inputs.ref }}
2525
- name: Set up Docker Buildx

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
username: ${{ secrets.DOCKERHUB_LOGIN }}
7474
password: ${{ secrets.DOCKERHUB_PASSWORD }}
7575
- name: Checkout
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v5
7777
with:
7878
ref: ${{ inputs.ref }}
7979
# NOTE: We fetch depth so that we can put the right `GIT` reference
@@ -132,7 +132,7 @@ jobs:
132132
if: always()
133133
steps:
134134
- name: Checkout
135-
uses: actions/checkout@v4
135+
uses: actions/checkout@v5
136136
- name: Upload final status
137137
if: always()
138138
uses: scality/actions/[email protected]

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v3

.github/workflows/create-dev-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
private-key: ${{ secrets.ACTIONS_APP_PRIVATE_KEY }}
3131
# checkout
3232
- name: Checkout
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
with:
3535
fetch-depth: 0
3636
token: ${{ steps.app-token.outputs.token }}

.github/workflows/crons.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- name: Checkout
3434
if: github.event.schedule == matrix.cron
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
- name: Run ${{ matrix.name }}
3737
if: github.event.schedule == matrix.cron
3838
env:

.github/workflows/downgrade-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
NAME: downgrade-${{ inputs.type }}
3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040
- name: Install deps
4141
run: sudo apt-get update && sudo apt-get install -y isomd5sum
4242

.github/workflows/generate-sbom.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
SBOM_PATH: ${{ github.workspace }}/artifacts/sbom
3838
steps:
3939
- name: Checkout repo
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141
with:
4242
ref: ${{ inputs.ref }}
4343

.github/workflows/lifecycle-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
artifacts-url: ${{ steps.artifacts.outputs.link }}
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
with:
3535
ref: ${{ inputs.dev-branch }}
3636
- name: Retrieve artifacts url

0 commit comments

Comments
 (0)