Fix running skopeo in update test containers script

Without this skopeo tries to create /run/containers, which it isn't
allowed to do in GitHub's CI context.

Signed-off-by: Pablo Zmdl <pablo@nextcloud.com>
This commit is contained in:
Pablo Zmdl
2026-07-21 12:33:01 +02:00
parent 3b6cd2d4e5
commit 6499ae4ccf
@@ -14,7 +14,10 @@ jobs:
- name: Install skopeo
run: sudo apt-get install -y skopeo
- name: Run update script
run: python3 .ci/update-test-container-image-reference.py
run: |
# Avoid skopeo trying to write to /run/containers/$USER_ID, which it isn't allowed to do in this context.
export REGISTRY_AUTH_FILE="$(mktemp)"
python3 .ci/update-test-container-image-reference.py
- name: Create Pull Request
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v7
with: