Skip to content

Commit

Permalink
Update GitHub Action to use Go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
SubstantialCattle5 committed Jul 13, 2024
1 parent 0a580be commit b8c2cf7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4 # Use the latest version of the setup-go action
with:
go-version: '1.16' # Set the Go version as needed
go-version: '1.22' # Set the Go version to 1.22

- name: Install dependencies
run: go mod tidy
Expand All @@ -28,4 +28,4 @@ jobs:
- name: Run GoReleaser
run: goreleaser release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This is automatically provided by GitHub Actions
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use the automatically provided GitHub token

0 comments on commit b8c2cf7

Please sign in to comment.