Skip to content

Commit

Permalink
Make GH Actions work again (#57)
Browse files Browse the repository at this point in the history
- Switch to latest LTS Ubuntu runner image
- Use latest version of Checkout GitHub Action (makes those deprecated
Nodejs warnings disappear)
  • Loading branch information
balcsida authored Apr 5, 2024
1 parent 6e6788e commit 23c60eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ on: [push, pull_request]

jobs:
tox:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Install dependencies
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get -qy update
sudo DEBIAN_FRONTEND=noninteractive apt-get -qy install tox
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Run tox
run: tox
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Install dependencies
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get -qy update
sudo DEBIAN_FRONTEND=noninteractive apt-get -qy install lvm2 fdisk gdisk qemu-utils busybox
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Run tests
# SKIP growpart-lvm test that does not work on github c-i
run: sudo SKIP=growpart-lvm PATH=$PWD/bin:$PATH ./test/run-all
Expand Down

0 comments on commit 23c60eb

Please sign in to comment.