Skip to content

Commit

Permalink
Bump docker/build-push-action from 5 to 6 (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
GollyTicker authored Aug 12, 2024
2 parents a1917e5 + e3a7f75 commit 3041c9c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
fi
- name: DockerHub Build and Release (with latest)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: env.publish_latest == 'true'
with:
platforms: linux/amd64,linux/arm64
Expand All @@ -119,7 +119,7 @@ jobs:
context: .

- name: DockerHub Build and Release (without latest)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: env.publish_latest == 'false'
with:
platforms: linux/amd64,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion dev/builder.local.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:11-slim as builder
FROM debian:11-slim AS builder
# A developer variant of protocurl for local development. See DEVELOPER.md
# This should be kept in sync with release/builder.Dockerfile

Expand Down
2 changes: 1 addition & 1 deletion release/builder.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This should be kept in sync with dev/builder.local.Dockerfile

FROM debian:11-slim as builder
FROM debian:11-slim AS builder
ARG VERSION
ARG TARGETARCH
RUN apt-get -q update && \
Expand Down
2 changes: 1 addition & 1 deletion release/final.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gcr.io/distroless/cc:latest as final
FROM gcr.io/distroless/cc:latest AS final

WORKDIR /protocurl

Expand Down

0 comments on commit 3041c9c

Please sign in to comment.