Skip to content

Commit

Permalink
ci: update actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
herver committed Jun 29, 2023
1 parent 8e17284 commit 68bcd3f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ jobs:
steps:

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

- name: Check out code into the Go module directory
uses: actions/setup-go@v4
uses: actions/checkout@v3
with:
go-version: '1.20'
id: go

- name: Build
run: go build -o go-gvacli -v .
run:
- go get -v
- go build -o go-gvacli -v .

- name: Save artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 68bcd3f

Please sign in to comment.