Skip to content

Commit

Permalink
Update Go workflow to use the latest stable version
Browse files Browse the repository at this point in the history
Removed the Go version matrix and replaced it with "stable" to always use the latest stable Go version. This simplifies the workflow and ensures it stays up-to-date automatically.
  • Loading branch information
aricart committed Dec 13, 2024
1 parent 19cbb0c commit 681122a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ on:

jobs:
test:
strategy:
matrix:
go: [1.21.x, 1.22.x]

runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -31,7 +27,8 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{matrix.go}}
go-version: stable
check-latest: true

- name: Install deps
shell: bash --noprofile --norc -x -eo pipefail {0}
Expand Down

0 comments on commit 681122a

Please sign in to comment.