From 6384cc6e8614e7cb4837a9e3c44e84cb206c267a Mon Sep 17 00:00:00 2001 From: Tristan Morgan Date: Thu, 14 Mar 2024 00:36:53 -0700 Subject: Update GH-Actions workflows to remove Node.js deprecation warning. (#1359) --- .github/workflows/manual.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index c300b17b..c2a4aa57 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Box64 Repository" - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: "Environment preparation" run: | @@ -90,7 +90,7 @@ jobs: make -j$(nproc) VERBOSE=1 - name: "Upload Artifact" - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: box64-${{ github.event.inputs.platform }}-${{ github.event.inputs.build_type }} path: build/box64 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f2e9afed..0e0db637 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: "Checkout Box64 Repository" - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: "Environment preparation" run: | @@ -166,7 +166,7 @@ jobs: fi - name: "Upload Artifact" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: box64-${{ matrix.platform }}-${{ matrix.type }} path: build/box64 -- cgit 1.4.1