Skip to content

Commit

Permalink
Merge pull request #83 from drone-plugins/CI-14897
Browse files Browse the repository at this point in the history
Fix: [CI-14897]: Update Alpine version to alpine:3.20
  • Loading branch information
Ompragash authored Nov 5, 2024
2 parents 9d2a321 + 9fd815f commit 201e4cc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pool:

steps:
- name: lint
image: golang:1.22.4
image: golang:1.22.7
pull: always
commands:
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
Expand All @@ -19,7 +19,7 @@ steps:
- name: gopath
path: "/go"
- name: test
image: golang:1.22.4
image: golang:1.22.7
pull: always
commands:
- go test -cover ./...
Expand Down Expand Up @@ -47,15 +47,15 @@ pool:

steps:
- name: environment
image: golang:1.22.4
image: golang:1.22.7
pull: always
environment:
CGO_ENABLED: "0"
commands:
- go version
- go env
- name: build
image: golang:1.22.4
image: golang:1.22.7
environment:
CGO_ENABLED: "0"
commands:
Expand Down Expand Up @@ -91,15 +91,15 @@ pool:

steps:
- name: environment
image: golang:1.22.4
image: golang:1.22.7
pull: always
environment:
CGO_ENABLED: "0"
commands:
- go version
- go env
- name: build
image: golang:1.22.4
image: golang:1.22.7
environment:
CGO_ENABLED: "0"
commands:
Expand Down Expand Up @@ -135,15 +135,15 @@ pool:

steps:
- name: environment
image: golang:1.22.4
image: golang:1.22.7
pull: always
environment:
CGO_ENABLED: "0"
commands:
- go version
- go env
- name: build
image: golang:1.22.4
image: golang:1.22.7
environment:
CGO_ENABLED: "0"
commands:
Expand Down Expand Up @@ -185,15 +185,15 @@ pool:

steps:
- name: environment
image: golang:1.22.4
image: golang:1.22.7
pull: always
environment:
CGO_ENABLED: "0"
commands:
- go version
- go env
- name: build
image: golang:1.22.4
image: golang:1.22.7
environment:
CGO_ENABLED: "0"
commands:
Expand Down Expand Up @@ -264,7 +264,7 @@ pool:

steps:
- name: build
image: golang:1.22.4
image: golang:1.22.7
commands:
- GOOS=linux GOARCH=amd64 go build -ldflags "-s -w -X main.version=${DRONE_TAG##v}" -a -tags netgo -o release/plugin-linux-amd64
- GOOS=linux GOARCH=arm64 go build -ldflags "-s -w -X main.version=${DRONE_TAG##v}" -a -tags netgo -o release/plugin-linux-arm64
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.linux.amd64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.15 as alpine
FROM alpine:3.20 as alpine
RUN apk add -U --no-cache ca-certificates

FROM scratch
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.linux.arm64
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM arm64v8/alpine:3.15 as alpine
FROM arm64v8/alpine:3.20 as alpine
RUN apk add -U --no-cache ca-certificates

FROM arm64v8/alpine:3.15
FROM arm64v8/alpine:3.20

LABEL maintainer="Drone.IO Community <[email protected]>" \
org.label-schema.name="Drone GCS" \
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/drone-plugins/drone-gcs

go 1.22.4
go 1.22.7

require (
cloud.google.com/go/storage v1.31.0
Expand Down

0 comments on commit 201e4cc

Please sign in to comment.