Skip to content

Commit 33e24cf

Browse files
committed
chore: update GitHub Actions versions in workflow files
- Update the version of `actions/checkout` from `v3` to `v4` in `.github/workflows/codeql.yml` - Update the version of `actions/checkout` from `v3` to `v4` in `.github/workflows/goreleaser.yml` - Update the version of `actions/setup-go` from `v3` to `v4` in `.github/workflows/goreleaser.yml` - Update the version of `actions/setup-go` from `v3` to `v4` in `.github/workflows/lint.yml` - Update the version of `actions/checkout` from `v3` to `v4` in `.github/workflows/lint.yml` - Update the version of `actions/setup-go` from `v3` to `v4` in `.github/workflows/testing.yml` - Update the version of `actions/checkout` from `v3` to `v4` in `.github/workflows/testing.yml` Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
1 parent 189b96f commit 33e24cf

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
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/goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
steps:
1515
-
1616
name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
-
2121
name: Set up Go
22-
uses: actions/setup-go@v3
22+
uses: actions/setup-go@v4
2323
with:
2424
go-version: 1.17
2525
-

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
GOPROXY: https://proxy.golang.org
1717
steps:
1818
- name: Set up Go ${{ matrix.go }}
19-
uses: actions/setup-go@v3
19+
uses: actions/setup-go@v4
2020
with:
2121
go-version: ${{ matrix.go }}
2222

2323
- name: Checkout Code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
with:
2626
ref: ${{ github.ref }}
2727

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
- uses: niden/actions-memcached@v7
3939

4040
- name: Set up Go ${{ matrix.go }}
41-
uses: actions/setup-go@v3
41+
uses: actions/setup-go@v4
4242

4343
- name: Checkout Code
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
with:
4646
ref: ${{ github.ref }}
4747

0 commit comments

Comments
 (0)