From 3d472c1233bd9be54642064aa35409382eb16d20 Mon Sep 17 00:00:00 2001 From: Daniel Lovell Date: Wed, 25 Sep 2024 19:40:32 -0700 Subject: [PATCH] chmod 777, update action/cache and actions/upload-artifact --- .github/workflows/builder.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/builder.yaml b/.github/workflows/builder.yaml index e3c6190..e8a4253 100644 --- a/.github/workflows/builder.yaml +++ b/.github/workflows/builder.yaml @@ -23,7 +23,7 @@ jobs: with: fetch-depth: 0 lfs: false - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: Library key: Library-${{ matrix.targetPlatform }} @@ -41,8 +41,8 @@ jobs: targetPlatform: ${{ matrix.targetPlatform }} - name: Make build output readable and executable run: | - sudo chmod -R +rx build/${{ matrix.targetPlatform }} - - uses: actions/upload-artifact@v3 + sudo chmod -R 777 build/${{ matrix.targetPlatform }} + - uses: actions/upload-artifact@v4 with: name: Build-${{ matrix.targetPlatform }} path: build/${{ matrix.targetPlatform }} \ No newline at end of file