Skip to content

Commit e2148a6

Browse files
authored
Merge pull request #39 from varlink/noxiouz-patch-1
Fix github workflow go-setup and update to 1.21.x
2 parents 38f589f + 2e6bbfd commit e2148a6

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/go.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
go-version: [1.13.x, stable]
16+
go-version: ['1.21.x', 'stable']
1717
os: [macos-latest, windows-latest, ubuntu-latest]
1818
steps:
19-
- name: Set up Go
20-
uses: actions/setup-go@v2
19+
- name: Set up Go ${{ matrix.go-version }}
20+
uses: actions/setup-go@v5
21+
with:
22+
go-version: ${{ matrix.go-version }}
2123
id: go
2224

2325
- name: Check out code into the Go module directory
24-
uses: actions/checkout@v2
26+
uses: actions/checkout@v5
2527

2628
- name: Generate
2729
run: go generate cmd/varlink-go-certification/orgvarlinkcertification/generate.go

0 commit comments

Comments
 (0)