Skip to content

Commit

Permalink
update go version
Browse files Browse the repository at this point in the history
  • Loading branch information
MalinAhlberg committed Sep 19, 2024
1 parent b8a2542 commit bb8a57a
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/code-linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ['1.22']
go-version: ['1.23']
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
Expand All @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ['1.22']
go-version: ['1.23']
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
Expand All @@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ['1.22']
go-version: ['1.23']
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functionality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
matrix:
storagetype: [s3, posix, s3notls]
go-version: ['1.22']
go-version: ['1.23']
fail-fast: false
steps:
- name: Set up Python
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22']
go-version: ['1.23']
steps:

- name: Set up Go ${{ matrix.go-version }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22']
go-version: ['1.23']
steps:

- name: Set up Go ${{ matrix.go-version }}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22']
go-version: ['1.23']
steps:

- name: Set up Go ${{ matrix.go-version }}
Expand Down
2 changes: 1 addition & 1 deletion sda-admin/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/neicnordic/sensitive-data-archive/sda-admin

go 1.22.3
go 1.23

require (
github.com/golang-jwt/jwt v3.2.2+incompatible
Expand Down
2 changes: 1 addition & 1 deletion sda-download/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine as builder
FROM golang:1.23-alpine as builder

ENV GOPATH=$PWD
ENV CGO_ENABLED=0
Expand Down
2 changes: 1 addition & 1 deletion sda-download/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/neicnordic/sda-download

go 1.22.2
go 1.23

require (
github.com/DATA-DOG/go-sqlmock v1.5.2
Expand Down
2 changes: 1 addition & 1 deletion sda/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM "golang:${GOLANG_VERSION:-1.22}-bullseye" AS Build
FROM "golang:${GOLANG_VERSION:-1.23}-bullseye" AS Build
ENV GO111MODULE=on
ENV GOPATH=$PWD
ENV CGO_ENABLED=0
Expand Down
2 changes: 1 addition & 1 deletion sda/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/neicnordic/sensitive-data-archive

go 1.22.2
go 1.23

require (
github.com/aws/aws-sdk-go-v2 v1.30.5
Expand Down

0 comments on commit bb8a57a

Please sign in to comment.