Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .cloudbees/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: https://github.com/cloudbees-io/checkout@v1

- name: Self Test
uses: docker://golang:1.26.1
uses: docker://golang:1.26.2
run: |
make verify

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.23 AS certs
RUN apk add -U --no-cache ca-certificates

FROM golang:1.26.1-alpine3.23 AS build
FROM golang:1.26.2-alpine3.23 AS build
WORKDIR /work
COPY go.mod* go.sum* ./
RUN go mod download
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/cloudbees-io/configure-aws-credentials

go 1.25.5
go 1.26.2

require (
github.com/aws/aws-sdk-go-v2/config v1.29.17
Expand Down