Skip to content

Commit

Permalink
ci: refactor GitHub Actions workflows
Browse files Browse the repository at this point in the history
- Update GitHub Actions workflow to use `checkout@v4`
- Update GitHub Actions workflow to use `setup-go@v5`

Signed-off-by: Bo-Yi Wu <[email protected]>
  • Loading branch information
appleboy committed Feb 2, 2024
1 parent 32f0fad commit 53c0ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
go-version: ["1.20", 1.21]
steps:
- name: checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build binary
Expand Down

0 comments on commit 53c0ab6

Please sign in to comment.