Skip to content

Commit

Permalink
Update CI action versions
Browse files Browse the repository at this point in the history
Also quote golang versions to avoid yaml parsing issues with numbers
  • Loading branch information
eapache committed Feb 21, 2024
1 parent 309b4a0 commit ed5e984
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/golang-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
strategy:
matrix:
go-version:
- 1.13
- 1.18
- 1.22
- '1.13'
- '1.18'
- '1.22'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

Expand Down

0 comments on commit ed5e984

Please sign in to comment.