Skip to content

Commit

Permalink
CI: Run on Ubuntu 20.04
Browse files Browse the repository at this point in the history
The 18.04 runners are not available anymore as per
actions/runner-images#6002 so use
instead the lowest available version at the moment. While at it,
update to the latest version of the upload-artifact action, as v1
is deprecated; and to Python 3.7 as 3.5 is no longer available.
  • Loading branch information
aperezdc committed Sep 11, 2024
1 parent af922a8 commit 96dfa96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: [push]

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -19,7 +19,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.5
python-version: 3.7
- name: Python Package Cache
uses: actions/cache@v1
with:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: |
DESTDIR="$(pwd)/_work/files" ninja -C _work/build install
- name: Archive Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: build
path: _work

0 comments on commit 96dfa96

Please sign in to comment.