From 1db6cd5720f8ce938be8e0c0c59404f5262072be Mon Sep 17 00:00:00 2001 From: Melekhin Anton Date: Sun, 6 Oct 2024 19:08:40 +0400 Subject: [PATCH] ci: use `ubuntu-22.04` instead of `ubuntu-latest` --- .github/workflows/molecule.yml | 4 ++-- .github/workflows/publish.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index 1583997..c58fa0b 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -8,7 +8,7 @@ on: jobs: lint: name: 'Lint' - runs-on: 'ubuntu-latest' + runs-on: 'ubuntu-22.04' steps: - name: 'Checkout the codebase' uses: 'actions/checkout@v4' @@ -29,7 +29,7 @@ jobs: molecule: name: 'Molecule' needs: 'lint' - runs-on: 'ubuntu-latest' + runs-on: 'ubuntu-22.04' strategy: matrix: include: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0d1177f..09d6ffc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,7 +7,7 @@ on: jobs: publish: name: 'Publish' - runs-on: 'ubuntu-latest' + runs-on: 'ubuntu-22.04' steps: - name: 'Checkout the codebase' uses: 'actions/checkout@v4' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 095a6ff..2871232 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: jobs: release: name: 'Release' - runs-on: 'ubuntu-latest' + runs-on: 'ubuntu-22.04' if: ${{ github.repository_owner == 'antmelekhin' && github.event.workflow_run.conclusion == 'success' }} steps: - name: 'Checkout the codebase'