From 9664873c207c51d040c595bdc4e47c89de41d0dd Mon Sep 17 00:00:00 2001 From: Eriq Taing Date: Sun, 22 Jun 2025 20:53:34 -0400 Subject: [PATCH] Use fedora base image and install nodejs, docker, and docker-buildx --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41e4587..f8c7a71 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ on: jobs: bluebuild: name: Build Custom Image - runs-on: rocky-minimal + runs-on: fedora-latest permissions: contents: read packages: write @@ -28,6 +28,11 @@ jobs: recipe: - recipe.yml steps: + - name: Install required packages + shell: bash + run: | + sudo dnf install -y nodejs docker-cli docker-buildx containerd + - uses: sigstore/cosign-installer@v3.9.0 with: install-dir: /usr/bin