From a300330b94abf6ecef284bdad61af1d98669b95e Mon Sep 17 00:00:00 2001 From: Jo Date: Sun, 9 Mar 2025 22:50:58 +0100 Subject: [PATCH] fix(ci): prefer ghcr image (#2589) prefer ghcr image --- .github/workflows/testing-git.yml | 2 +- .github/workflows/testing.yml | 2 +- Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing-git.yml b/.github/workflows/testing-git.yml index 7c424233..a34dc232 100644 --- a/.github/workflows/testing-git.yml +++ b/.github/workflows/testing-git.yml @@ -12,7 +12,7 @@ jobs: name: Lint and test yay (-git) runs-on: ubuntu-latest container: - image: jguer/yay-builder:latest + image: ghcr.io/jguer/yay-builder:latest steps: - uses: actions/checkout@v4 - uses: actions/cache@v3 diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d9ece003..76adcb1c 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -7,7 +7,7 @@ jobs: name: Lint and test yay runs-on: ubuntu-latest container: - image: jguer/yay-builder:latest + image: ghcr.io/jguer/yay-builder:latest steps: - uses: actions/checkout@v4 - uses: actions/cache@v3 diff --git a/Dockerfile b/Dockerfile index 1a89eef2..1e39b196 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/jguer/yay-builder:latest +FROM ghcr.io/jguer/yay-builder:latest LABEL maintainer="Jguer,docker@jguer.space" ARG VERSION @@ -9,4 +9,4 @@ WORKDIR /app COPY . . -RUN make release VERSION=${VERSION} PREFIX=${PREFIX} ARCH=${ARCH} +RUN make release VERSION=${VERSION} PREFIX=${PREFIX} ARCH=${ARCH} \ No newline at end of file