From 02991b7fd9aa6c05dcb0c99504007f4c78b2c0f4 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 7 Dec 2022 08:54:09 +1000 Subject: [PATCH] CI: update some actions to v3 Node 12 is deprecated, so let's bump to a newer version https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ Signed-off-by: Peter Hutterer --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a0bdb12..b64e357 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,13 +12,13 @@ jobs: run: | sudo apt-get update -yq sudo apt-get install -yq --no-install-suggests --no-install-recommends $UBUNTU_PACKAGES - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: meson run: meson builddir - name: ninja run: ninja -C builddir test - name: capture build logs - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ always() }} # even if we fail with: name: meson logs