Skip to content

Commit ef9b7b0

Browse files
committed
minor cleanup
1 parent b6dc6a4 commit ef9b7b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313

1414
- name: Checkout ${{ github.repository }}
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Collect build context
1818
id: context

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ARG ALPINE_TAG=3.22
44

55
# Builder stage
6-
FROM alpine:${ALPINE_TAG} as builder
6+
FROM alpine:${ALPINE_TAG} AS builder
77

88
ARG MONERO_TAG
99
RUN test -n "${MONERO_TAG}"
@@ -91,7 +91,7 @@ RUN set -ex && \
9191

9292

9393
# Runtime stage
94-
FROM alpine:${ALPINE_TAG} as runtime
94+
FROM alpine:${ALPINE_TAG} AS runtime
9595

9696
RUN set -ex && \
9797
apk update && \

0 commit comments

Comments
 (0)