Skip to content

Commit 948c287

Browse files
committed
update github actions
1 parent eb3d8dc commit 948c287

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/workflow.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/setup-go@v4
1414
with:
1515
go-version: 1.18
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: golangci-lint
1818
uses: golangci/golangci-lint-action@v3
1919
with:
@@ -29,7 +29,7 @@ jobs:
2929
OS: ${{ matrix.os }}
3030
GOVERSION: ${{ matrix.go-version }}
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- name: Setup Go ${{ matrix.go-version }}
3434
uses: actions/setup-go@v4
3535
with:
@@ -43,7 +43,7 @@ jobs:
4343
- name: Test
4444
run: make ci
4545
- name: Archive code coverage results
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
4848
name: code-coverage-report-${{ matrix.os }}
4949
path: coverage.txt
@@ -54,11 +54,11 @@ jobs:
5454

5555
steps:
5656
- name: Download a linux coverage report
57-
uses: actions/download-artifact@v3
57+
uses: actions/download-artifact@v4
5858
with:
5959
name: code-coverage-report-ubuntu-latest
6060
- name: Upload coverage to Codecov
61-
uses: codecov/codecov-action@v3
61+
uses: codecov/codecov-action@v4
6262
with:
6363
token: ${{ secrets.CODECOV_TOKEN }}
6464
fail_ci_if_error: true

0 commit comments

Comments
 (0)