Skip to content

Commit bfe6927

Browse files
Bump actions/checkout from 3 to 4 (#141)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent df1714f commit bfe6927

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
env:
1313
SLUG: ${{ github.repository }}
1414

15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- name: Set TAG
1818
run: grep -F . Tagfile && echo TAG=$(cat Tagfile) >>$GITHUB_ENV

.github/workflows/pr.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
tagfile:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
with:
1212
fetch-depth: 0 # For $ git tag
1313

1414
- name: Ensure Tagfile is usable
1515
run: grep -E '^[0-9]+[.][0-9]+[.][0-9]+$' Tagfile
1616

1717
- name: Checkout master Tagfile
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
ref: master
2121
path: ./master-Tagfile
@@ -49,12 +49,12 @@ jobs:
4949
with:
5050
skip-commit-verification: true
5151
github-token: "${{ secrets.GITHUB_TOKEN }}"
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v6
5353
with:
5454
fetch-depth: 0 # For $ git tag
5555
ref: ${{ github.event.pull_request.head.ref }}
5656
- name: Checkout master Tagfile
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v6
5858
with:
5959
ref: master
6060
path: ./master-Tagfile
@@ -90,7 +90,7 @@ jobs:
9090
check-goimports:
9191
runs-on: ubuntu-latest
9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v6
9494
- uses: actions/setup-go@v6.2.0
9595
- run: go install github.com/incu6us/goimports-reviser/v3@v3.6.5
9696
- run: which goimports-reviser
@@ -100,7 +100,7 @@ jobs:
100100
check-nillness:
101101
runs-on: ubuntu-latest
102102
steps:
103-
- uses: actions/checkout@v4
103+
- uses: actions/checkout@v6
104104
- uses: actions/setup-go@v6.2.0
105105
- run: go run golang.org/x/tools/go/analysis/passes/nilness/cmd/nilness@latest ./...
106106

@@ -122,7 +122,7 @@ jobs:
122122
env:
123123
SLUG: ${{ github.repository }}
124124

125-
- uses: actions/checkout@v4
125+
- uses: actions/checkout@v6
126126

127127
- uses: docker/setup-buildx-action@v3.12.0
128128

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
buildkit:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111

1212
- name: Ensure download script is in the right path
1313
run: test -f .godownloader.sh

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1212
# TODO - godownloader -r FuzzyMonkeyCo/monkey -o .godownloader.sh .goreleaser.yml
1313
- name: Run shellcheck
1414
uses: ludeeus/action-shellcheck@2.0.0

.github/workflows/tag.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
command: version
2222
github_token: ${{ secrets.github_token }}
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- name: lint
2525
uses: FuzzyMonkeyCo/setup-monkey@v1
2626
with:
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
command: version
4141
github_token: ${{ secrets.github_token }}
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v6
4343
- name: lint
4444
uses: FuzzyMonkeyCo/setup-monkey@v1
4545
with:
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
command: version
6060
github_token: ${{ secrets.github_token }}
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v6
6262
- name: lint
6363
uses: FuzzyMonkeyCo/setup-monkey@v1
6464
with:

Tagfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.53.4
1+
0.53.5

0 commit comments

Comments
 (0)