Skip to content

Commit fb048c3

Browse files
committed
chore: update GitHub Actions versions in workflows
- Update the `actions/checkout` version in `.github/workflows/codeql.yml` - Update the `actions/setup-go` version in `.github/workflows/go.yml` - Update the `actions/checkout` version in `.github/workflows/go.yml` - Update the `actions/checkout` version in `.github/workflows/goreleaser.yml` Signed-off-by: Bo-Yi Wu <[email protected]>
1 parent d39982e commit fb048c3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/go.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Setup go
16-
uses: actions/setup-go@v3
16+
uses: actions/setup-go@v4
1717
with:
1818
go-version: "^1.21"
1919
- name: Checkout repository
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Setup golangci-lint
2222
uses: golangci/golangci-lint-action@v3
2323
with:
@@ -45,7 +45,7 @@ jobs:
4545
go-version: ${{ matrix.go }}
4646

4747
- name: Checkout Code
48-
uses: actions/checkout@v3
48+
uses: actions/checkout@v4
4949
with:
5050
ref: ${{ github.ref }}
5151

.github/workflows/goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- name: Set up Go

0 commit comments

Comments
 (0)