diff options
| author | Tristan Morgan <tristanmorgan@users.noreply.github.com> | 2024-03-14 00:36:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-14 08:36:53 +0100 |
| commit | 6384cc6e8614e7cb4837a9e3c44e84cb206c267a (patch) | |
| tree | 417fce9936357217d281ee1a745d44d045bed4d5 /.github/workflows | |
| parent | 2f68df2b5f3f7dadc9cb0a76afa065f47ade1fb4 (diff) | |
| download | box64-6384cc6e8614e7cb4837a9e3c44e84cb206c267a.tar.gz box64-6384cc6e8614e7cb4837a9e3c44e84cb206c267a.zip | |
Update GH-Actions workflows to remove Node.js deprecation warning. (#1359)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/manual.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 4 |
2 files changed, 4 insertions, 4 deletions
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 |