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

dep: Docker Bump golang from 1.20-alpine3.17 to 1.21-alpine3.17 #513

Merged
merged 1 commit into from
Aug 16, 2023
Merged
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
9 changes: 6 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
test:
name: test
runs-on: ubuntu-latest
container: golang:1.20-alpine3.17
container: golang:1.21-alpine3.17
steps:
- name: Install git
run: apk add --update --no-cache git
Expand All @@ -37,7 +37,7 @@ jobs:
build:
name: build
runs-on: ubuntu-latest
container: golang:1.20-alpine3.17
container: golang:1.21-alpine3.17
strategy:
matrix:
os: [linux, darwin, windows]
Expand Down Expand Up @@ -105,7 +105,10 @@ jobs:
"kindest/node:v1.22.15",
"kindest/node:v1.23.13",
"kindest/node:v1.24.7",
"kindest/node:v1.25.3"
"kindest/node:v1.25.3",
"kindest/node:v1.26.6",
"kindest/node:v1.27.3",
"kindest/node:v1.28.0"
]
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.20-alpine3.17 AS builder
FROM --platform=$BUILDPLATFORM golang:1.21-alpine3.17 AS builder
ARG GITHUB_REF GITHUB_SHA
WORKDIR /src
COPY go.mod go.sum ./
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/doitintl/kube-no-trouble

go 1.20
go 1.18

require (
github.com/ghodss/yaml v1.0.0
Expand Down
Loading