From 33b4a621a697a305bc3a7610d290677b96beb181 Mon Sep 17 00:00:00 2001 From: scribam Date: Fri, 31 May 2024 09:52:03 +0200 Subject: [PATCH] Update GitHub Actions --- .github/workflows/make_light_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make_light_release.yml b/.github/workflows/make_light_release.yml index d4643a50..d23e4d23 100644 --- a/.github/workflows/make_light_release.yml +++ b/.github/workflows/make_light_release.yml @@ -15,7 +15,7 @@ jobs: run: sudo apt-get update -y && sudo apt-get install -y zip p7zip - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set env run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV @@ -29,13 +29,13 @@ jobs: - name: Create 7z archive run: 7z a glm-${{ env.RELEASE_VERSION }}.7z . - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: glm-${{ env.RELEASE_VERSION }} path: glm-${{ env.RELEASE_VERSION }}.* - name: Add to Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: | glm-${{ env.RELEASE_VERSION }}.zip