Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
geovex committed Aug 21, 2024
1 parent 75ff399 commit ab82727
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
go-version: ['1.21', '1.22']
go-version: ['1.23']
cgo: [0, 1]
runs-on: ${{ matrix.os }}
env:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM docker.io/golang:1.21-alpine AS build
FROM docker.io/golang:1.23-alpine AS build
WORKDIR /app
ADD . ./
RUN go mod download && go build ./cmd/tgp

FROM docker.io/golang:1.21-alpine AS deploy
FROM docker.io/golang:1.23-alpine AS deploy
RUN apk add --no-cache gcompat
WORKDIR /app
COPY --from=build /app/tgp ./
Expand Down

0 comments on commit ab82727

Please sign in to comment.