Skip to content

Commit 724a064

Browse files
authored
Upgrade checkout action in workflows to v4 (#1106)
> This is an automatically generated PR. actions/checkout got a new release with v4. Shouldn't affect anything, just newer. @rebuy-de/it-platform FYI
1 parent 90a9c2a commit 724a064

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
go install golang.org/x/lint/golint@latest
2323
- name: Checkout code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
- name: Check Formatting
2626
run: |
2727
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
@@ -42,7 +42,7 @@ jobs:
4242
if: github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == 'rebuy-de/aws-nuke' && github.event.pull_request.user.login != 'dependabot[bot]')
4343

4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
with:
4747
fetch-depth: 0
4848

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
ref: main
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
go-version: '1.21'
4242
- name: Checkout code
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444
with:
4545
fetch-depth: 0
4646
- name: Build Project binaries
@@ -62,7 +62,7 @@ jobs:
6262
name: Docker Build
6363

6464
steps:
65-
- uses: actions/checkout@v3
65+
- uses: actions/checkout@v4
6666
with:
6767
fetch-depth: 0
6868

0 commit comments

Comments
 (0)