Skip to content

Commit

Permalink
Bump the docker-bacsicauth group in /cmd/githubauth with 2 updates (#93)
Browse files Browse the repository at this point in the history
Bumps the docker-bacsicauth group in /cmd/githubauth with 2 updates: golang and alpine.


Updates `golang` from 1.23.3 to 1.23.4

Updates `alpine` from 3.20.3 to 3.21.0

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: docker-bacsicauth
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker-bacsicauth
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 12, 2025
1 parent af3257f commit be1bc88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/githubauth/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.23.3 AS build
FROM golang:1.23.4 AS build
WORKDIR /githubauth
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN export CGO_ENABLED=0 && make build-githubauth

FROM alpine:3.20.3
FROM alpine:3.21.0
RUN apk update && apk add --no-cache ca-certificates
RUN mkdir /githubauth
COPY --from=build /githubauth/bin/githubauth /githubauth
Expand Down

0 comments on commit be1bc88

Please sign in to comment.