Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump go #71

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
permissions:
contents: read
jobs:
golangci-lint:
staticcheck:
permissions:
contents: read
pull-requests: read
Expand All @@ -31,9 +31,9 @@ jobs:

- run: "go test ./..."
- run: "go vet ./..."
- uses: dominikh/[email protected].0
- uses: dominikh/[email protected].1
with:
version: "2023.1.6"
version: "2023.1.7"
install-go: false
test:
strategy:
Expand All @@ -43,6 +43,7 @@ jobs:
- ubuntu
go:
- 21
- 22
name: 'tests on ${{ matrix.platform }} | 1.${{ matrix.go }}.x'
runs-on: ${{ matrix.platform }}-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.3 as build
FROM golang:1.22.5 as build

WORKDIR /go/src/app
COPY . .
Expand Down
Loading