Skip to content

Commit

Permalink
Update go version in actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcopaganini authored and mpinheir committed Jun 2, 2024
1 parent 8c58819 commit 65c2ecd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Go compiler
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.19.x
go-version: 'stable'
check-latest: true
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build binary
run: |
go get -t ./...
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tagged-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@ jobs:

steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
persist-credentials: false

Expand Down

0 comments on commit 65c2ecd

Please sign in to comment.