From 35f8d1e3f2ee1059661082787d7bfebedbe40575 Mon Sep 17 00:00:00 2001 From: Tulio Leao Date: Sat, 14 Sep 2024 05:23:23 -0300 Subject: [PATCH] Update CI to checkout@v4, upload-artifact@v4, action-gh-release@v2 (#56) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fac027a..e377bf9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,18 +4,18 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download ffmpeg, zip run: sudo apt-get update && sudo apt-get install -y ffmpeg zip - name: Create music objects run: node build.mjs --verbose - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "OpenRCT2 OpenMusic Objects" path: out/**/* - name: Create release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') with: fail_on_unmatched_files: true