fix(ci): prefer ghcr image (#2589)

prefer ghcr image
This commit is contained in:
Jo
2025-03-09 22:50:58 +01:00
committed by GitHub
parent 670598912e
commit a300330b94
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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}