Skip to content

Commit 2e6bbfd

Browse files
authored
Update Go version and actions in workflow
1 parent 38f589f commit 2e6bbfd

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)