From 8fd3c8505039ac379d95bce46431f7064a425795 Mon Sep 17 00:00:00 2001 From: Neil Vaytet Date: Thu, 27 Jun 2024 11:16:18 +0200 Subject: [PATCH] same ubuntu everywhere --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d51b99d..98a3ca1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ concurrency: jobs: formatting: name: Formatting and static analysis - runs-on: ubuntu-latest + runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -32,7 +32,7 @@ jobs: tests: name: Tests needs: formatting - runs-on: ubuntu-latest + runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -45,7 +45,7 @@ jobs: docs: needs: tests name: Documentation - runs-on: ubuntu-latest + runs-on: 'ubuntu-latest' steps: - run: sudo apt install --yes pandoc - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3446dc0..8241aa0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ defaults: jobs: build_conda: name: Conda build - runs-on: ubuntu-latest + runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v4 @@ -38,7 +38,7 @@ jobs: build_wheels: name: Wheels - runs-on: ubuntu-latest + runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v4 @@ -64,7 +64,7 @@ jobs: upload_pypi: name: Deploy PyPI needs: [build_wheels, build_conda] - runs-on: 'ubuntu-22.04' + runs-on: 'ubuntu-latest' environment: release permissions: id-token: write @@ -76,7 +76,7 @@ jobs: upload_conda: name: Deploy Conda needs: [build_wheels, build_conda] - runs-on: 'ubuntu-22.04' + runs-on: 'ubuntu-latest' if: github.event_name == 'release' && github.event.action == 'published' steps: