diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 99469e0f4ce..636d00e38a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -336,7 +336,7 @@ jobs: org.opencontainers.image.source=${{github.server_url}}/${{github.repository}} org.opencontainers.image.licenses=MIT annotations: | - org.opencontainers.image.description=https://github.com/actions/runner/releases/tag/v${{ steps.image.outputs.version }} + org.opencontainers.image.description=https://github.com/quantco/actions-runner/releases/tag/v${{ steps.image.outputs.version }} - name: Generate attestation uses: actions/attest-build-provenance@v4 diff --git a/images/Dockerfile b/images/Dockerfile index c468b8d025d..877a4339e4d 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -13,7 +13,7 @@ RUN apt update -y && apt install curl unzip -y WORKDIR /actions-runner RUN export RUNNER_ARCH=${TARGETARCH} \ && if [ "$RUNNER_ARCH" = "amd64" ]; then export RUNNER_ARCH=x64 ; fi \ - && curl -f -L -o runner.tar.gz https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-${TARGETOS}-${RUNNER_ARCH}-${RUNNER_VERSION}.tar.gz \ + && curl -f -L -o runner.tar.gz https://github.com/quantco/actions-runner/releases/download/v${RUNNER_VERSION}/actions-runner-${TARGETOS}-${RUNNER_ARCH}-${RUNNER_VERSION}.tar.gz \ && tar xzf ./runner.tar.gz \ && rm runner.tar.gz