Skip to content

Commit 239bb98

Browse files
committed
ci: update ci
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
1 parent 94090d1 commit 239bb98

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434
with:
3535
# We must fetch at least the immediate parents so that if this is
3636
# a pull request then we can checkout the head.

.github/workflows/linters.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Check out code
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424

2525
- name: Set up Go 1.18
26-
uses: actions/setup-go@v1
26+
uses: actions/setup-go@v3
2727
with:
2828
go-version: 1.18
2929

3030
- name: Run linter
31-
uses: golangci/golangci-lint-action@v2 # Action page: <https://github.com/golangci/golangci-lint-action>
31+
uses: golangci/golangci-lint-action@v3.1.0 # Action page: <https://github.com/golangci/golangci-lint-action>
3232
with:
3333
version: v1.45 # without patch version
3434
only-new-issues: false # show only new issues if it's a pull request

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
GO111MODULE: on
2828
steps:
2929
- name: Set up Go ${{ matrix.go }}
30-
uses: actions/setup-go@v1
30+
uses: actions/setup-go@v3
3131
with:
3232
go-version: ${{ matrix.go }}
3333

3434
- name: Check out code
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
with:
3737
fetch-depth: 1
3838

@@ -53,7 +53,7 @@ jobs:
5353
go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage-ci/disabled_vertices.txt -covermode=atomic ./tests/disabled_vertices
5454
cat ./coverage-ci/*.txt > ./coverage-ci/summary.txt
5555
56-
- uses: codecov/codecov-action@v1 # Docs: <https://github.com/codecov/codecov-action>
56+
- uses: codecov/codecov-action@v2.1.0 # Docs: <https://github.com/codecov/codecov-action>
5757
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
5858
with:
5959
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
GO111MODULE: on
2828
steps:
2929
- name: Set up Go ${{ matrix.go }}
30-
uses: actions/setup-go@v1
30+
uses: actions/setup-go@v3
3131
with:
3232
go-version: ${{ matrix.go }}
3333

3434
- name: Check out code
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
with:
3737
fetch-depth: 1
3838

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
GO111MODULE: on
2828
steps:
2929
- name: Set up Go ${{ matrix.go }}
30-
uses: actions/setup-go@v1
30+
uses: actions/setup-go@v3
3131
with:
3232
go-version: ${{ matrix.go }}
3333

3434
- name: Check out code
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
with:
3737
fetch-depth: 1
3838

0 commit comments

Comments
 (0)