From 12b9db2d53e4912bb24a692ebd7932ba2dc5ff02 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Fri, 8 Mar 2024 06:41:25 +0100 Subject: [PATCH] workflows: Move to ubuntu-22.04 and actions/checkout@v4 --- .github/workflows/release.yml | 2 +- .github/workflows/tests.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 697b12c..b32e676 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 292e488..15eda2d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 @@ -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: @@ -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: |