From d2549679a56bc0f23e83d39ff62933975cd6badc Mon Sep 17 00:00:00 2001 From: Galo Navarro Date: Tue, 10 Oct 2023 15:59:26 +0200 Subject: [PATCH] fixup! Avoid using latest in Dockerfile --- .github/workflows/build.yml | 3 +++ Dockerfile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9805228..699dd66 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,3 +25,6 @@ jobs: - name: Test run: make test + + - name: Dockerize + run: docker build . diff --git a/Dockerfile b/Dockerfile index 072213f..2e45682 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,6 @@ LABEL "com.github.actions.name"="Condition-based Pull Request labeller" \ "repository"="https://github.com/srvaroa/labeler" WORKDIR / -ARG ASSET_URL=https://github.com/srvaroa/labeler/releases/v1.6.3/download/action.tar.gz +ARG ASSET_URL=https://github.com/srvaroa/labeler/releases/download/v1.6.3/action.tar.gz RUN wget -q -O- $ASSET_URL | tar xzvf - ENTRYPOINT ["/action"]