From c54eac7d6132b81296da23479cf0d2e4a1ac855e Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Fri, 14 Oct 2022 09:24:43 +0200 Subject: [PATCH] [build] Update github actions Use github-checkout v3, github-upload-artifact-action v3 and joshua-ashton-gcc-problem-matcher v2. Fixes Node.js 12 deprecation warning. --- .github/workflows/artifacts.yml | 6 +++--- .github/workflows/test-build-windows.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index b843d1aa..5a43b890 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -9,13 +9,13 @@ jobs: steps: - name: Checkout code id: checkout-code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive fetch-depth: 0 - name: Setup problem matcher - uses: Joshua-Ashton/gcc-problem-matcher@v1 + uses: Joshua-Ashton/gcc-problem-matcher@v2 - name: Build release id: build-release @@ -28,7 +28,7 @@ jobs: - name: Upload artifacts id: upload-artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: dxvk-${{ env.VERSION_NAME }} path: build/dxvk-${{ env.VERSION_NAME }} diff --git a/.github/workflows/test-build-windows.yml b/.github/workflows/test-build-windows.yml index 67c3bfd6..e4844bbb 100644 --- a/.github/workflows/test-build-windows.yml +++ b/.github/workflows/test-build-windows.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout code id: checkout-code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive