Skip to content

Commit

Permalink
CI: update 'other_checks' to ubuntu-24.04
Browse files Browse the repository at this point in the history
It seems ubuntu-latest is progressively rolled out by GitHub to
be updated to ubuntu-24.04 (in my forks at least), and currently
'pip3 install cffconvert' fails on it.
  • Loading branch information
rouault committed Jan 2, 2025
1 parent 4bacf90 commit 72ed512
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/code_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,16 @@ jobs:
run: ./scripts/cppcheck.sh

other_checks:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Requirements
run: |
sudo apt-get install python3-pip
sudo pip3 install cffconvert
sudo apt-get install -y --no-install-recommends python3-pip
sudo apt-get remove -y jsonschema
sudo pip3 install --break-system-packages cffconvert
- name: Validate citation file
run: |
Expand Down

0 comments on commit 72ed512

Please sign in to comment.