Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 5a547a4

Browse files
committed
Bump Github actions
1 parent d7d2a15 commit 5a547a4

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/block-fixup.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Block Fixup Commit Merge
1212
uses: 13rac1/block-fixup-merge-action@v2.0.0

.github/workflows/e2e.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
steps:
2525
- name: Checkout code
2626
if: matrix.go != 'tip' || matrix.platform != 'windows-latest'
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828
- name: Install Go
2929
if: matrix.go != 'tip' || matrix.platform != 'windows-latest'
30-
uses: actions/setup-go@v2
30+
uses: actions/setup-go@v5
3131
with:
3232
go-version: 1.x
3333
- name: Install Go tip

.github/workflows/lint.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- name: Install Go
20-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: 1.19.x
2323
check-latest: true
@@ -36,11 +36,11 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v4
4040
with:
4141
fetch-depth: 0
4242
- name: Install Go
43-
uses: actions/setup-go@v3
43+
uses: actions/setup-go@v5
4444
with:
4545
go-version: 1.19.x
4646
check-latest: true
@@ -49,7 +49,7 @@ jobs:
4949
echo "::set-output name=Version::$(head -n 1 "${GITHUB_WORKSPACE}/.golangci.yml" | tr -d '# ')"
5050
id: version
5151
- name: golangci-lint
52-
uses: golangci/golangci-lint-action@v3
52+
uses: golangci/golangci-lint-action@v4
5353
with:
5454
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
5555
version: ${{ steps.version.outputs.Version }}

.github/workflows/test.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
runs-on: ${{ matrix.platform }}
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
- name: Get the k6 version
2929
id: get_k6_version
3030
run: |
3131
echo "Running tests on '${GITHUB_REF}' with '$(git describe --tags --always --long --dirty)' checked out..."
3232
- name: Install Go
33-
uses: actions/setup-go@v3
33+
uses: actions/setup-go@v5
3434
with:
3535
go-version: ${{ matrix.go-version }}
3636
check-latest: true
@@ -46,9 +46,9 @@ jobs:
4646
continue-on-error: true
4747
steps:
4848
- name: Checkout code
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050
- name: Install Go
51-
uses: actions/setup-go@v3
51+
uses: actions/setup-go@v5
5252
with:
5353
go-version: 1.x
5454
check-latest: true
@@ -77,9 +77,9 @@ jobs:
7777
runs-on: ${{ matrix.platform }}
7878
steps:
7979
- name: Checkout code
80-
uses: actions/checkout@v3
80+
uses: actions/checkout@v4
8181
- name: Install Go
82-
uses: actions/setup-go@v3
82+
uses: actions/setup-go@v5
8383
with:
8484
go-version: ${{ matrix.go-version }}
8585
check-latest: true
@@ -101,7 +101,7 @@ jobs:
101101
- name: Generate coverage HTML report
102102
run: go tool cover -html=coverage.txt -o coverage.html
103103
- name: Upload coverage report
104-
uses: actions/upload-artifact@v2
104+
uses: actions/upload-artifact@v4
105105
with:
106106
name: test-coverage-report-${{ matrix.platform }}
107107
path: coverage.html
@@ -115,9 +115,9 @@ jobs:
115115
runs-on: ${{ matrix.platform }}
116116
steps:
117117
- name: Checkout code
118-
uses: actions/checkout@v3
118+
uses: actions/checkout@v4
119119
- name: Install Go
120-
uses: actions/setup-go@v3
120+
uses: actions/setup-go@v5
121121
with:
122122
go-version: ${{ matrix.go-version }}
123123
check-latest: true

0 commit comments

Comments
 (0)