Skip to content

Commit 41aba42

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fac9e36 commit 41aba42

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/compile.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: Set up buildx command
@@ -44,7 +44,7 @@ jobs:
4444
go-version: ${{ matrix.version }}
4545
id: go
4646
- name: Checkout
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
fetch-depth: 100
5050
fetch-tags: true
@@ -79,7 +79,7 @@ jobs:
7979
go-version: ${{ matrix.version }}
8080
id: go
8181
- name: Checkout
82-
uses: actions/checkout@v5
82+
uses: actions/checkout@v6
8383
with:
8484
fetch-depth: 100
8585
fetch-tags: true
@@ -120,7 +120,7 @@ jobs:
120120
go-version: ${{ matrix.version }}
121121
id: go
122122
- name: Checkout
123-
uses: actions/checkout@v5
123+
uses: actions/checkout@v6
124124
with:
125125
fetch-depth: 100
126126
fetch-tags: true

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: Set up emulation

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
- uses: actions/setup-go@v6
1919
with:
2020
go-version: ${{ matrix.version }}

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
go-version: ${{ matrix.version }}
2424
id: go
2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0
2929
- name: Build binary
@@ -57,7 +57,7 @@ jobs:
5757
go-version: ${{ matrix.version }}
5858
id: go
5959
- name: Checkout
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161
with:
6262
fetch-depth: 0
6363
- name: Build binary
@@ -97,7 +97,7 @@ jobs:
9797
go-version: ${{ matrix.version }}
9898
id: go
9999
- name: Checkout
100-
uses: actions/checkout@v5
100+
uses: actions/checkout@v6
101101
with:
102102
fetch-depth: 0
103103
- name: Build binary
@@ -118,7 +118,7 @@ jobs:
118118
upload_url: ${{ steps.create_release.outputs.upload_url }}
119119
steps:
120120
- name: Checkout
121-
uses: actions/checkout@v5
121+
uses: actions/checkout@v6
122122
with:
123123
fetch-depth: 0
124124
- name: Create release
@@ -147,7 +147,7 @@ jobs:
147147
- { os: 'darwin', arch: 'universal' }
148148
steps:
149149
- name: Checkout
150-
uses: actions/checkout@v5
150+
uses: actions/checkout@v6
151151
with:
152152
fetch-depth: 0
153153
- name: Download artifact
@@ -175,7 +175,7 @@ jobs:
175175
- { os: 'windows', arch: 'amd64' }
176176
steps:
177177
- name: Checkout
178-
uses: actions/checkout@v5
178+
uses: actions/checkout@v6
179179
with:
180180
fetch-depth: 0
181181
- name: Download artifact

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
go-version: ${{ matrix.version }}
2323
id: go
2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
- name: Build binary
2727
run: make ghostunnel
2828
- name: Run tests
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ${{ matrix.os }}
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
- name: Run tests
4242
run: GO_VERSION=${{ matrix.version }} make docker-test
4343
- name: Codecov upload
@@ -72,7 +72,7 @@ jobs:
7272
- name: Install gocovmerge
7373
run: go install github.com/wadey/gocovmerge@latest
7474
- name: Checkout
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
- name: Run tests
7777
run: make test
7878
- name: Codecov upload

0 commit comments

Comments
 (0)