From 2ffadef01a25b0851152426c6e31b3bb0fb20dd0 Mon Sep 17 00:00:00 2001 From: Andrew Krasichkov Date: Thu, 1 Aug 2024 09:26:57 +0300 Subject: [PATCH] bump go --- .github/workflows/ci.yml | 7 ++++--- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b39bd3a..6ccb314 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ on: permissions: contents: read jobs: - golangci-lint: + staticcheck: permissions: contents: read pull-requests: read @@ -31,9 +31,9 @@ jobs: - run: "go test ./..." - run: "go vet ./..." - - uses: dominikh/staticcheck-action@v1.3.0 + - uses: dominikh/staticcheck-action@v1.3.1 with: - version: "2023.1.6" + version: "2023.1.7" install-go: false test: strategy: @@ -43,6 +43,7 @@ jobs: - ubuntu go: - 21 + - 22 name: 'tests on ${{ matrix.platform }} | 1.${{ matrix.go }}.x' runs-on: ${{ matrix.platform }}-latest steps: diff --git a/Dockerfile b/Dockerfile index d1ca9cb..bb570de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.3 as build +FROM golang:1.22.5 as build WORKDIR /go/src/app COPY . .