diff --git a/.github/workflows/code-linter.yaml b/.github/workflows/code-linter.yaml index f10a243b7..6eabc7aba 100644 --- a/.github/workflows/code-linter.yaml +++ b/.github/workflows/code-linter.yaml @@ -8,7 +8,7 @@ on: - '**/go.*' env: - go-version: '1.23' + go-version: '1.24' jobs: lint_download: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a08ef715..5ad94bcf5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,7 +5,7 @@ on: branches-ignore: [main] env: - go-version: '1.23' + go-version: '1.24' jobs: diff --git a/sda-admin/go.mod b/sda-admin/go.mod index 90cea71e0..92f89c85d 100644 --- a/sda-admin/go.mod +++ b/sda-admin/go.mod @@ -1,6 +1,6 @@ module github.com/neicnordic/sensitive-data-archive/sda-admin -go 1.23.1 +go 1.24.0 require ( github.com/neicnordic/crypt4gh v1.12.0 diff --git a/sda-download/.github/workflows/test.yml b/sda-download/.github/workflows/test.yml index 8fe495e02..047f9154c 100644 --- a/sda-download/.github/workflows/test.yml +++ b/sda-download/.github/workflows/test.yml @@ -8,7 +8,7 @@ on: - "schemas/**" env: - go-version: '1.23' + go-version: '1.24' jobs: build: diff --git a/sda-download/Dockerfile b/sda-download/Dockerfile index b9ceec036..30f945353 100644 --- a/sda-download/Dockerfile +++ b/sda-download/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23-alpine AS builder +FROM golang:1.24-alpine AS builder ENV GOPATH=$PWD ENV CGO_ENABLED=0 diff --git a/sda-download/go.mod b/sda-download/go.mod index c4453bad2..71ed3dd1a 100644 --- a/sda-download/go.mod +++ b/sda-download/go.mod @@ -1,6 +1,6 @@ module github.com/neicnordic/sda-download -go 1.23.1 +go 1.24.0 require ( github.com/DATA-DOG/go-sqlmock v1.5.2 diff --git a/sda/Dockerfile b/sda/Dockerfile index c0d360e87..c3415e736 100644 --- a/sda/Dockerfile +++ b/sda/Dockerfile @@ -1,4 +1,4 @@ -FROM "golang:${GOLANG_VERSION:-1.23}-bullseye" AS Build +FROM "golang:${GOLANG_VERSION:-1.24}-bullseye" AS Build ENV GO111MODULE=on ENV GOPATH=$PWD ENV CGO_ENABLED=0 diff --git a/sda/go.mod b/sda/go.mod index f752639fc..2888ca96c 100644 --- a/sda/go.mod +++ b/sda/go.mod @@ -1,6 +1,6 @@ module github.com/neicnordic/sensitive-data-archive -go 1.23.1 +go 1.24.0 require ( github.com/aws/aws-sdk-go-v2 v1.36.1