Skip to content

Commit befa9b2

Browse files
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `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) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `golangci/golangci-lint-action` from 6 to 8 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v6...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4be8b70 commit befa9b2

File tree

5 files changed

+30
-30
lines changed

5 files changed

+30
-30
lines changed

.github/workflows/benchmark.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
BENCHMARK_OUT_DIR: "../out"
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
path: gauge
2727
- name: Set up Go
@@ -47,7 +47,7 @@ jobs:
4747
run: gauge install java
4848

4949
- name: Prep benchmark
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
repository: getgauge/gauge-benchmarks
5353
path: gauge-benchmarks
@@ -78,15 +78,15 @@ jobs:
7878

7979
steps:
8080
- name: Prep benchmark
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
with:
8383
repository: getgauge/gauge-benchmarks
8484
path: gauge-benchmarks
8585
token: ${{ secrets.GAUGEBOT_GITHUB_TOKEN }}
8686
ref: master
8787

8888
- name: Download benchmark results
89-
uses: actions/download-artifact@v4
89+
uses: actions/download-artifact@v5
9090
with:
9191
path: gauge-benchmarks/out/
9292

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: Set up Go
2828
uses: actions/setup-go@v5

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
name: lint
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
2525
check-latest: true
2626
go-version-file: 'go.mod'
2727
- name: golangci-lint
28-
uses: golangci/golangci-lint-action@v6
28+
uses: golangci/golangci-lint-action@v8
2929
with:
3030
args: --timeout=10m
3131
# with:

.github/workflows/release.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Create package
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Set up Go
1616
uses: actions/setup-go@v5
1717
with:
@@ -35,7 +35,7 @@ jobs:
3535
name: Create windows package
3636
runs-on: windows-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: Set up Go
4040
uses: actions/setup-go@v5
4141
with:
@@ -73,9 +73,9 @@ jobs:
7373
env:
7474
GITHUB_TOKEN: '${{ secrets.GAUGEBOT_GITHUB_TOKEN }}'
7575
steps:
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v5
7777

78-
- uses: actions/download-artifact@v4
78+
- uses: actions/download-artifact@v5
7979
with:
8080
name: gauge-non-windows-artifact
8181
path: ./deploy
@@ -102,20 +102,20 @@ jobs:
102102
env:
103103
GITHUB_TOKEN: '${{ secrets.GAUGEBOT_GITHUB_TOKEN }}'
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106106

107-
- uses: actions/download-artifact@v4
107+
- uses: actions/download-artifact@v5
108108
with:
109109
name: gauge-non-windows-artifact
110110
path: ./deploy
111111

112-
- uses: actions/download-artifact@v4
112+
- uses: actions/download-artifact@v5
113113
with:
114114
name: gauge-windows-artifact
115115
path: ./deploy
116116

117117
- name: Fetch gauge version
118-
uses: actions/download-artifact@v4
118+
uses: actions/download-artifact@v5
119119
with:
120120
name: gauge-version
121121
path: .
@@ -140,7 +140,7 @@ jobs:
140140
runs-on: ubuntu-latest
141141
needs: [gauge-version]
142142
steps:
143-
- uses: actions/checkout@v4
143+
- uses: actions/checkout@v5
144144
- run: git fetch --prune --unshallow
145145

146146
- name: Set up Python
@@ -150,7 +150,7 @@ jobs:
150150
cache: 'pip' # caching pip dependencies
151151

152152
- name: Fetch gauge version
153-
uses: actions/download-artifact@v4
153+
uses: actions/download-artifact@v5
154154
with:
155155
name: gauge-version
156156
path: .
@@ -173,7 +173,7 @@ jobs:
173173
runs-on: ubuntu-latest
174174
needs: [gauge-version]
175175
steps:
176-
- uses: actions/checkout@v4
176+
- uses: actions/checkout@v5
177177
- run: git fetch --prune --unshallow
178178

179179
- uses: actions/setup-node@v4
@@ -184,7 +184,7 @@ jobs:
184184
registry-url: 'https://registry.npmjs.org'
185185

186186
- name: Fetch gauge version
187-
uses: actions/download-artifact@v4
187+
uses: actions/download-artifact@v5
188188
with:
189189
name: gauge-version
190190
path: .
@@ -209,16 +209,16 @@ jobs:
209209
runs-on: windows-latest
210210
needs: [gauge-version, windows-package]
211211
steps:
212-
- uses: actions/checkout@v4
212+
- uses: actions/checkout@v5
213213
- run: git fetch --prune --unshallow
214214

215215
- name: Fetch gauge version
216-
uses: actions/download-artifact@v4
216+
uses: actions/download-artifact@v5
217217
with:
218218
name: gauge-version
219219
path: .
220220

221-
- uses: actions/download-artifact@v4
221+
- uses: actions/download-artifact@v5
222222
with:
223223
name: gauge-windows-artifact
224224
path: ./deploy

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
os: [windows-latest, ubuntu-latest, macos-latest]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
@@ -35,7 +35,7 @@ jobs:
3535
matrix:
3636
os: [windows-latest, ubuntu-latest]
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: Set up Go
4040
uses: actions/setup-go@v5
4141
with:
@@ -102,7 +102,7 @@ jobs:
102102
matrix:
103103
os: [windows-latest, ubuntu-latest]
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106106
- name: Set up Go
107107
uses: actions/setup-go@v5
108108
with:
@@ -201,7 +201,7 @@ jobs:
201201
os: [windows-latest, ubuntu-latest, macos-latest]
202202

203203
steps:
204-
- uses: actions/checkout@v4
204+
- uses: actions/checkout@v5
205205
- name: Set up Go
206206
uses: actions/setup-go@v5
207207
with:
@@ -229,7 +229,7 @@ jobs:
229229
BENCHMARK_OUT_DIR: "../out"
230230

231231
steps:
232-
- uses: actions/checkout@v4
232+
- uses: actions/checkout@v5
233233
with:
234234
path: gauge
235235
- name: Set up Go
@@ -254,7 +254,7 @@ jobs:
254254
run: gauge install java
255255

256256
- name: Prep benchmark
257-
uses: actions/checkout@v4
257+
uses: actions/checkout@v5
258258
with:
259259
repository: getgauge/gauge-benchmarks
260260
path: gauge-benchmarks
@@ -284,13 +284,13 @@ jobs:
284284

285285
steps:
286286
- name: Prep benchmark
287-
uses: actions/checkout@v4
287+
uses: actions/checkout@v5
288288
with:
289289
repository: getgauge/gauge-benchmarks
290290
path: gauge-benchmarks
291291
ref: master
292292
- name: Download benchmark results
293-
uses: actions/download-artifact@v4
293+
uses: actions/download-artifact@v5
294294
with:
295295
path: gauge-benchmarks/out/
296296
- name: Generate Comment String

0 commit comments

Comments
 (0)