Skip to content

Commit 8c4fd21

Browse files
committed
chore(github): upgrade action package.
Signed-off-by: Bo-Yi Wu <[email protected]>
1 parent cd34821 commit 8c4fd21

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
# queries: ./path/to/local/query, your-org/your-repo/queries@main
5252

5353
- name: Perform CodeQL Analysis
54-
uses: github/codeql-action/analyze@v1
54+
uses: github/codeql-action/analyze@v2

.github/workflows/go.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Setup go
16-
uses: actions/setup-go@v2
16+
uses: actions/setup-go@v3
1717
with:
1818
go-version: '^1.16'
1919
- name: Checkout repository
2020
uses: actions/checkout@v3
2121
- name: Setup golangci-lint
22-
uses: golangci/golangci-lint-action@v2
22+
uses: golangci/golangci-lint-action@v3
2323
with:
2424
version: v1.45.0
2525
args: --verbose
@@ -40,7 +40,7 @@ jobs:
4040
GOPROXY: https://proxy.golang.org
4141
steps:
4242
- name: Set up Go ${{ matrix.go }}
43-
uses: actions/setup-go@v2
43+
uses: actions/setup-go@v3
4444
with:
4545
go-version: ${{ matrix.go }}
4646

@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
ref: ${{ github.ref }}
5151

52-
- uses: actions/cache@v2
52+
- uses: actions/cache@v3
5353
with:
5454
path: |
5555
${{ matrix.go-build }}
@@ -62,6 +62,6 @@ jobs:
6262
go test -v -covermode=atomic -coverprofile=coverage.out
6363
6464
- name: Upload coverage to Codecov
65-
uses: codecov/codecov-action@v2
65+
uses: codecov/codecov-action@v3
6666
with:
6767
flags: ${{ matrix.os }},go-${{ matrix.go }}

0 commit comments

Comments
 (0)