Skip to content

Commit

Permalink
ci.yaml: Update to latest GitHub Actions
Browse files Browse the repository at this point in the history
Update the checkout and setup-python actions to the latest versions.

Remove Ubuntu 18.04 as a runner image as it has been deprecated by GitHub Actions and no longer as runners available.

Signed-off-by: Rob Woolley <[email protected]>
  • Loading branch information
robwoolley committed Nov 25, 2024
1 parent 098a996 commit 2ee5049
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
build:
strategy:
matrix:
os: ["ubuntu-18.04", "ubuntu-20.04", "ubuntu-22.04"]
os: ["ubuntu-20.04", "ubuntu-22.04"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
name: superflore tests
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{matrix.python}}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{matrix.python}}
- name: Install dependencies
Expand Down

0 comments on commit 2ee5049

Please sign in to comment.