Skip to content

Commit 94275de

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 d43ee73 commit 94275de

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04
2323
steps:
2424
- name: Checkout repo
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Build image
2828
uses: redhat-actions/buildah-build@v2

.github/workflows/testingfarm-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "Job originally triggered by ${{ github.actor }}"
2828
exit 1
2929
- name: Check out code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
ref: ${{ github.event.pull_request.head.sha }}
3333
- name: Run the tests

.github/workflows/testingfarm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
echo "Job originally triggered by ${{ github.actor }}"
4545
exit 1
4646
- name: Check out code
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
with:
4949
ref: ${{ github.event.pull_request.head.sha }}
5050
- name: Run the tests

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
id: go
3131

3232
- name: Check out code into the Go module directory
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
with:
3535
ref: ${{ github.event.pull_request.head.sha }}
3636

@@ -59,7 +59,7 @@ jobs:
5959
name: "🐚 Shellcheck"
6060
runs-on: ubuntu-24.04
6161
steps:
62-
- uses: actions/checkout@v4
62+
- uses: actions/checkout@v5
6363
with:
6464
ref: ${{ github.event.pull_request.head.sha }}
6565
- name: Run ShellCheck
@@ -77,7 +77,7 @@ jobs:
7777
test_files: ${{ steps.collect.outputs.test_files }}
7878
steps:
7979
- name: Checkout code
80-
uses: actions/checkout@v4
80+
uses: actions/checkout@v5
8181
with:
8282
ref: ${{ github.event.pull_request.head.sha }}
8383
- name: Collect test files
@@ -96,7 +96,7 @@ jobs:
9696
matrix:
9797
test_file: ${{ fromJson(needs.collect_tests.outputs.test_files) }}
9898
steps:
99-
- uses: actions/checkout@v4
99+
- uses: actions/checkout@v5
100100
with:
101101
ref: ${{ github.event.pull_request.head.sha }}
102102
- name: Setup up python

0 commit comments

Comments
 (0)