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

chore(deps): update docker.io/golang docker tag to v1.23 #137

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ steps:
image: docker.io/mstruebing/editorconfig-checker

- name: lint-golang
image: docker.io/golang:1.22
image: docker.io/golang:1.23
commands:
- make lint
volumes:
- name: godeps
path: /go

- name: test
image: docker.io/golang:1.22
image: docker.io/golang:1.23
commands:
- make test
volumes:
Expand Down Expand Up @@ -54,7 +54,7 @@ steps:
- make release

- name: executable
image: docker.io/golang:1.22
image: docker.io/golang:1.23
commands:
- $(find dist/ -executable -type f -iname ${DRONE_REPO_NAME}-linux-amd64) --help

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM docker.io/golang:1.22@sha256:f43c6f049f04cbbaeb28f0aad3eea15274a7d0a7899a617d0037aec48d7ab010 as build
FROM --platform=$BUILDPLATFORM docker.io/golang:1.23@sha256:927112936d6b496ed95f55f362cc09da6e3e624ef868814c56d55bd7323e0959 as build

ARG TARGETOS
ARG TARGETARCH
Expand Down