Skip to content

Commit

Permalink
Update github action to use the latest stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
lugu committed Nov 14, 2023
1 parent 82b1389 commit 7599824
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.13
uses: actions/setup-go@v1
- name: Set up Go stable version
uses: actions/setup-go@v4
with:
go-version: 1.13
go-version: 'stable'
cache: false
id: go

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

- name: Get dependencies
run: |
Expand Down

0 comments on commit 7599824

Please sign in to comment.