Skip to content

Commit

Permalink
workflows: Move to ubuntu-22.04 and actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpitt committed Mar 8, 2024
1 parent 052e524 commit 12b9db2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create GitHub release
uses: docker://antonyurchenko/git-release:latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:
- cron: 0 4 * * MON,FRI
jobs:
vm:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build
run: make
Expand All @@ -18,7 +18,7 @@ jobs:
run: sudo tests/run

container:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand All @@ -33,7 +33,7 @@ jobs:
options: --privileged
steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install build and test dependencies
run: |
Expand Down

0 comments on commit 12b9db2

Please sign in to comment.