Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
kind_integration_tests:
name: KinD integration tests
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Checkout code
# actions/checkout@v2.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
buildx:
name: Build & Push Multi Arch Images
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Checkout code
# actions/checkout@v2.0.0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/static_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ on:
jobs:
go_lint:
name: Go lint
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container:
image: golang:1.13.4
image: golang:1.14.15
steps:
- name: Checkout code
# actions/checkout@v2.0.0
Expand All @@ -24,9 +24,9 @@ jobs:
version: v1.29
go_format:
name: Go format
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container:
image: golang:1.13.4
image: golang:1.14.15
steps:
- name: Checkout code
# actions/checkout@v2.0.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ on:
jobs:
go_unit_tests:
name: Go unit tests
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container:
image: golang:1.13.4
image: golang:1.14.15
steps:
- name: Checkout code
# actions/checkout@v2.0.0
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## compile proxy-init utility
FROM --platform=$BUILDPLATFORM golang:1.12.9 as golang
FROM --platform=$BUILDPLATFORM golang:1.14.15 as golang
WORKDIR /build

# cache dependencies
Expand All @@ -13,11 +13,11 @@ ARG TARGETARCH
RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH go build -o /out/linkerd2-proxy-init -mod=readonly -ldflags "-s -w" -v

## package runtime
FROM --platform=$TARGETPLATFORM debian:buster-20201117-slim
FROM --platform=$TARGETPLATFORM debian:buster-20210208-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
iptables \
procps \
iptables \
procps \
&& rm -rf /var/lib/apt/lists/* \
&& update-alternatives --set iptables /usr/sbin/iptables-legacy \
&& update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
Expand Down