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

Update golang Docker tag to v1.23 #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
16 changes: 8 additions & 8 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ pool:
steps:
- name: vet
pull: always
image: golang:1.19
image: golang:1.23
commands:
- go vet ./...
environment:
GO111MODULE: on

- name: test
pull: always
image: golang:1.19-alpine
image: golang:1.23-alpine
commands:
- apk --no-cache add -U python3 python3-dev git gcc libc-dev libffi-dev openssl-dev py3-pip
- pip3 install --no-cache-dir --upgrade pip setuptools wheel six twine
Expand Down Expand Up @@ -66,7 +66,7 @@ pool:
steps:
- name: build-push
pull: always
image: golang:1.19
image: golang:1.23
commands:
- 'go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-pypi'
environment:
Expand All @@ -79,7 +79,7 @@ steps:

- name: build-tag
pull: always
image: golang:1.19
image: golang:1.23
commands:
- 'go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-pypi'
environment:
Expand All @@ -91,7 +91,7 @@ steps:

- name: executable
pull: always
image: golang:1.19
image: golang:1.23
commands:
- ./release/linux/amd64/drone-pypi --help

Expand Down Expand Up @@ -150,7 +150,7 @@ platform:
steps:
- name: build-push
pull: always
image: golang:1.19
image: golang:1.23
commands:
- 'go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-pypi'
environment:
Expand All @@ -163,7 +163,7 @@ steps:

- name: build-tag
pull: always
image: golang:1.19
image: golang:1.23
commands:
- 'go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-pypi'
environment:
Expand All @@ -175,7 +175,7 @@ steps:

- name: executable
pull: always
image: golang:1.19
image: golang:1.23
commands:
- ./release/linux/arm64/drone-pypi --help

Expand Down