Skip to content

Commit 61e2702

Browse files
Upgrade GitHub action tool chain version (#77)
1 parent db840e1 commit 61e2702

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/go.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
steps:
1212

1313
- name: Set up Go
14-
uses: actions/setup-go@v3
14+
uses: actions/setup-go@v5
1515
with:
1616
go-version: ${{ matrix.go-version }}
1717
id: go
1818

1919
- name: Check out code into the Go module directory
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Get dependencies
2323
run: |
@@ -26,18 +26,18 @@ jobs:
2626
run: go build -v .
2727

2828
- name: Checkout test XSD
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
repository: xuri/xsd
3232
path: data
3333

3434
- name: Test
35-
run: go test -v -timeout 60m -coverprofile=coverage.txt -covermode=atomic ./
35+
run: go test -v -timeout 60m -coverprofile='coverage.txt' -covermode=atomic ./
3636

3737
- name: Codecov
38-
uses: codecov/codecov-action@v3
38+
uses: codecov/codecov-action@v4
3939
with:
40-
token: ${{secrets.CODECOV_TOKEN}}
40+
token: ${{ secrets.CODECOV_TOKEN }}
4141
file: coverage.txt
4242
flags: unittests
4343
name: codecov-umbrella

0 commit comments

Comments
 (0)