From 0667dbbabad9041309504feac5ebe51da5e29b10 Mon Sep 17 00:00:00 2001 From: elyday Date: Wed, 25 Dec 2024 14:50:31 +0100 Subject: [PATCH] Add container image for CI workflow execution This updates the CI workflow to run within a specified container image. The `ghcr.io/catthehacker/ubuntu:act-22.04` image ensures consistency and reproducibility in the CI environment. --- .forgejo/workflows/ci-cd.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/ci-cd.yaml b/.forgejo/workflows/ci-cd.yaml index 92a0810..1cacaeb 100644 --- a/.forgejo/workflows/ci-cd.yaml +++ b/.forgejo/workflows/ci-cd.yaml @@ -32,6 +32,9 @@ jobs: runs-on: docker needs: ci + container: + image: ghcr.io/catthehacker/ubuntu:act-22.04 + steps: - name: Download Artifact uses: actions/download-artifact@v3