Skip to content

Commit cad37bf

Browse files
authored
Use consistent go version across module and CI (#5)
Use a consistent go minor version across go mod and CI workflow. While at it, upgrade to the latest GitHub Actions steps for Go setup and cache.
1 parent 9beddc9 commit cad37bf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
go-version: [1.24.1]
15+
go-version: [1.24.5]
1616

1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4
2020

2121
- name: Set up Go
22-
uses: actions/setup-go@v4
22+
uses: actions/setup-go@v5
2323
with:
2424
go-version: ${{ matrix.go-version }}
2525

2626
- name: Cache Go modules
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: |
3030
~/.cache/go-build

0 commit comments

Comments
 (0)