ci: upgrade to Go 1.24 (required by go.mod)

This commit is contained in:
2025-12-11 15:28:49 +01:00
parent fc1bb38ef5
commit 6fa967f367

View File

@@ -16,7 +16,7 @@ jobs:
name: Test name: Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: golang:1.23-bookworm image: golang:1.24-bookworm
steps: steps:
- name: Install git - name: Install git
run: apt-get update && apt-get install -y git ca-certificates run: apt-get update && apt-get install -y git ca-certificates
@@ -41,7 +41,7 @@ jobs:
name: Lint name: Lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: golang:1.23-bookworm image: golang:1.24-bookworm
steps: steps:
- name: Install git - name: Install git
run: apt-get update && apt-get install -y git ca-certificates run: apt-get update && apt-get install -y git ca-certificates
@@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test, lint] needs: [test, lint]
container: container:
image: golang:1.23-bookworm image: golang:1.24-bookworm
strategy: strategy:
matrix: matrix:
goos: [linux, darwin, windows] goos: [linux, darwin, windows]
@@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test] needs: [test]
container: container:
image: golang:1.23-bookworm image: golang:1.24-bookworm
steps: steps:
- name: Install git - name: Install git
run: apt-get update && apt-get install -y git ca-certificates run: apt-get update && apt-get install -y git ca-certificates
@@ -117,7 +117,7 @@ jobs:
needs: [test, lint, build] needs: [test, lint, build]
if: startsWith(github.ref, 'refs/tags/v') if: startsWith(github.ref, 'refs/tags/v')
container: container:
image: golang:1.23-bookworm image: golang:1.24-bookworm
steps: steps:
- name: Install tools - name: Install tools
run: | run: |