Skip to content

Commit

Permalink
use latest actions/setup-go and actions/checkout, use Go 1.20.x
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnps committed Feb 27, 2023
1 parent a2f0755 commit 6c975b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
steps:

- name: Set up Go 1.20
uses: actions/setup-go@v1
uses: actions/setup-go@v3
with:
go-version: 1.20
go-version: '1.20.x'
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Build
run: |
Expand Down

0 comments on commit 6c975b4

Please sign in to comment.