From 4ff868db8c86a278333f5a0d3b48d603d506baa6 Mon Sep 17 00:00:00 2001 From: Jarod42 Date: Fri, 15 Mar 2024 18:30:33 +0100 Subject: [PATCH] [CI]: - ubuntu-18.04 is no longer supported by github, update to ubuntu-20.04 - update action version to avoid node.js 16 warning --- .github/workflows/cmake.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 4b9375e8..275990ef 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -13,13 +13,13 @@ jobs: build: strategy: matrix: - os: [ubuntu-latest, ubuntu-18.04, windows-2019] + os: [ubuntu-latest, ubuntu-20.04, windows-2019] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: olegtarasov/get-tag@v2.1 + - uses: olegtarasov/get-tag@v2.1.3 id: tagName - name: Install ubuntu dependencies @@ -56,7 +56,7 @@ jobs: run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - name: Store windows artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: startsWith(matrix.os, 'windows') with: name: Stargus