Skip to content

Commit

Permalink
same ubuntu everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
nvaytet committed Jun 27, 2024
1 parent 169019e commit 8fd3c85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defaults:
jobs:
build_conda:
name: Conda build
runs-on: ubuntu-latest
runs-on: 'ubuntu-latest'

steps:
- uses: actions/checkout@v4
Expand All @@ -38,7 +38,7 @@ jobs:

build_wheels:
name: Wheels
runs-on: ubuntu-latest
runs-on: 'ubuntu-latest'

steps:
- uses: actions/checkout@v4
Expand All @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 8fd3c85

Please sign in to comment.