From 226e11b5348b55f0e79f172be30007a2eeeb54f9 Mon Sep 17 00:00:00 2001 From: simon-wh Date: Wed, 16 Oct 2024 15:07:30 +0200 Subject: [PATCH] Update used actions to ones that are node20 based --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7838ba9..a9c8a6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: target: x86 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -123,7 +123,7 @@ jobs: - name: Zip files if: startsWith(github.ref, 'refs/tags/v') - uses: vimtor/action-zip@v1.1 + uses: vimtor/action-zip@v1.2 with: files: dist/ recursive: true @@ -131,7 +131,7 @@ jobs: - name: Make Release if: startsWith(github.ref, 'refs/tags/v') - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: ${{env.RELEASE_NAME}}.zip token: ${{ secrets.GITHUB_TOKEN }}