Skip to content

Commit

Permalink
Update action version & golang versions
Browse files Browse the repository at this point in the history
We have newer versions.
  • Loading branch information
JanneKiiskila committed May 28, 2024
1 parent 00b42c3 commit eb860a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
go-build-and-checks:
strategy:
matrix:
golang-ver: ["1.17", "1.18", "1.19", "1.20"]
golang-ver: ["1.19", "1.20", "1.21", "1.22"]
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up golang
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.golang-ver }}
- name: Set GitHub access token via git config
run: |
run: |
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github.com/".insteadOf "git@github.com:"
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf "https://github"
- run: go version
Expand Down

0 comments on commit eb860a2

Please sign in to comment.