Skip to content

Commit

Permalink
chore: update version of actions/setup-go in GitHub workflows
Browse files Browse the repository at this point in the history
- Update the version of `actions/setup-go` from `v4` to `v5` in `.github/workflows/docker.yml`
- Update the version of `actions/setup-go` from `v4` to `v5` in `.github/workflows/goreleaser.yml`
- Update the version of `actions/setup-go` from `v4` to `v5` in `.github/workflows/testing.yml`

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
  • Loading branch information
appleboy committed Dec 11, 2023
1 parent e61298e commit 40c2c1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "^1"
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "^1"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "^1"
- name: Checkout repository
Expand Down

0 comments on commit 40c2c1b

Please sign in to comment.