Skip to content

Commit

Permalink
🔧 fix CI.yml sdist error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousret committed Oct 15, 2024
1 parent ed2f874 commit f864880
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:
jobs:

lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- uses: actions/setup-python@v4
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup dependencies
run: pip install --upgrade pip pytest
- name: Set up Clang (Linux)
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
run: sudo apt-get install clang
- name: Set up Clang (Cygwin)
if: matrix.os == 'windows-latest'
Expand Down Expand Up @@ -372,7 +372,7 @@ jobs:
needs:
- test
- lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- name: Build sdist
Expand All @@ -388,7 +388,7 @@ jobs:

checksum:
name: compute hashes
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [windows, macos, linux, sdist]
if: "startsWith(github.ref, 'refs/tags/')"
outputs:
Expand Down Expand Up @@ -423,7 +423,7 @@ jobs:

release:
name: release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: "startsWith(github.ref, 'refs/tags/')"
needs: provenance
environment: pypi
Expand Down

0 comments on commit f864880

Please sign in to comment.