diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 438c3b7a..9a205e12 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' cache: false - name: golangci-lint-server uses: golangci/golangci-lint-action@v4 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d5675778..5726b03e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' cache-dependency-path: | server/go.sum - name: run tests diff --git a/.github/workflows/test_migration.yml b/.github/workflows/test_migration.yml index 061fd9d1..918a1b14 100644 --- a/.github/workflows/test_migration.yml +++ b/.github/workflows/test_migration.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' cache-dependency-path: | server/go.sum - name: run manual migrations diff --git a/server/Dockerfile b/server/Dockerfile index 66da46dd..c0653394 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21-alpine3.18 as builder +FROM golang:1.22-alpine3.19 as builder # Install git + SSL ca certificates. # Git is required for fetching the dependencies.