From fdcd8ecc8bedd20d040c26d06d147bb75621bd8d Mon Sep 17 00:00:00 2001 From: Brock Allen Date: Sat, 3 Feb 2024 01:14:34 +0000 Subject: [PATCH] ops: Use fork of docer-run-action --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2316cf6..756d7b1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -69,7 +69,7 @@ jobs: key: ${{ runner.os }}-docker-${{ steps.dockerfile-hash.outputs.hash }} - name: Build library - uses: https://github.com/addnab/docker-run-action@v3 + uses: https://git.brocklobsta.net/brock/docker-run-action@v3 with: image: /tmp/docker/${{ runner.os }}-builder-image.tar options: --volumes-from ${{ env.JOB_CONTAINER_NAME }} @@ -77,7 +77,7 @@ jobs: /bin/bash -c "cd ${{ github.workspace }}; rm -rf build; cmake -B build; cmake --build build" - name: Test library - uses: https://github.com/addnab/docker-run-action@v3 + uses: https://git.brocklobsta.net/brock/docker-run-action@v3 with: image: cproject-builder:latest options: --volumes-from ${{ env.JOB_CONTAINER_NAME }}