From 45a27d51e30f102f3db7612bca42af8d7241791a Mon Sep 17 00:00:00 2001 From: wyattb Date: Fri, 24 Jan 2025 23:44:41 -0500 Subject: [PATCH 1/2] try changing unbunto version --- .github/workflows/scylla-build.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/scylla-build.yml b/.github/workflows/scylla-build.yml index 912381c3..4d0d03cb 100644 --- a/.github/workflows/scylla-build.yml +++ b/.github/workflows/scylla-build.yml @@ -4,8 +4,6 @@ name: Create and publish scylla docker image on: workflow_dispatch: - - # Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. env: REGISTRY: ghcr.io @@ -14,7 +12,7 @@ env: # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: build-and-push-image: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job. permissions: contents: read @@ -54,4 +52,3 @@ jobs: # cache-to: type=gha,mode=max # https://github.com/docker/build-push-action/issues/820 provenance: false - From bd9139910bc853bdfd2e6c8eac0a9d3eb2d6239e Mon Sep 17 00:00:00 2001 From: wyattb Date: Sat, 25 Jan 2025 00:51:09 -0500 Subject: [PATCH 2/2] comment update --- .github/workflows/scylla-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scylla-build.yml b/.github/workflows/scylla-build.yml index 4d0d03cb..9a94ba04 100644 --- a/.github/workflows/scylla-build.yml +++ b/.github/workflows/scylla-build.yml @@ -9,7 +9,7 @@ env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} -# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. +# There is a single job in this workflow. It's configured to run on the 22.04 version of Ubuntu (TODO: configure for new latests). jobs: build-and-push-image: runs-on: ubuntu-22.04