Skip to content

Commit 52d04cd

Browse files
committed
chore(actions): upgrade package
Signed-off-by: Bo-Yi Wu <[email protected]>
1 parent 6b967df commit 52d04cd

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/codeql.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@v1
44+
uses: github/codeql-action/init@v2
4545
with:
4646
languages: ${{ matrix.language }}
4747
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,4 +50,4 @@ jobs:
5050
# queries: ./path/to/local/query, your-org/your-repo/queries@main
5151

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

.github/workflows/go.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- name: Setup go
9-
uses: actions/setup-go@v2
9+
uses: actions/setup-go@v3
1010
with:
1111
go-version: '^1'
1212
- name: Checkout repository
1313
uses: actions/checkout@v3
1414
- name: Setup golangci-lint
15-
uses: golangci/golangci-lint-action@v2
15+
uses: golangci/golangci-lint-action@v3
1616
with:
1717
version: v1.45.0
1818
args: --verbose
@@ -39,7 +39,7 @@ jobs:
3939
slave1-port: 6380
4040

4141
- name: Set up Go ${{ matrix.go }}
42-
uses: actions/setup-go@v2
42+
uses: actions/setup-go@v3
4343
with:
4444
go-version: ${{ matrix.go }}
4545

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

51-
- uses: actions/cache@v2
51+
- uses: actions/cache@v3
5252
with:
5353
path: |
5454
${{ matrix.go-build }}
@@ -61,6 +61,6 @@ jobs:
6161
go test -v -covermode=atomic -coverprofile=coverage.out
6262
6363
- name: Upload coverage to Codecov
64-
uses: codecov/codecov-action@v2
64+
uses: codecov/codecov-action@v3
6565
with:
6666
flags: ${{ matrix.os }},go-${{ matrix.go }}

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020
-
2121
name: Set up Go
22-
uses: actions/setup-go@v2
22+
uses: actions/setup-go@v3
2323
with:
2424
go-version: 1.17
2525
-

0 commit comments

Comments
 (0)