diff --git a/.github/workflows/scylla-build.yml b/.github/workflows/scylla-build.yml index 912381c3..9a94ba04 100644 --- a/.github/workflows/scylla-build.yml +++ b/.github/workflows/scylla-build.yml @@ -4,17 +4,15 @@ 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 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-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 -