diff --git a/.github/workflows/build-js.yml b/.github/workflows/build-js.yml index 5a76d512d..0026d824a 100644 --- a/.github/workflows/build-js.yml +++ b/.github/workflows/build-js.yml @@ -84,7 +84,7 @@ jobs: - name: Upload pkg binary for Windows if: inputs.os == 'ubuntu-latest' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ./grain.tar name: grain-win-x64 @@ -98,7 +98,7 @@ jobs: - name: Upload pkg binary for Mac if: inputs.os == 'ubuntu-latest' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ./grain.tar name: grain-mac-x64 @@ -112,7 +112,7 @@ jobs: - name: Upload pkg binary for Linux if: inputs.os == 'ubuntu-latest' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ./grain.tar name: grain-linux-x64 diff --git a/.github/workflows/build-native.yml b/.github/workflows/build-native.yml index f6a34c17d..9740bef98 100644 --- a/.github/workflows/build-native.yml +++ b/.github/workflows/build-native.yml @@ -73,7 +73,7 @@ jobs: # Upload the artifacts before we run the tests so we # can download to debug if tests fail in a weird way - name: Upload native compiler artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: native-build-artifacts-${{ runner.os }}-${{ runner.arch }} path: cli/bin/*.exe diff --git a/.github/workflows/generate-docs.yml b/.github/workflows/generate-docs.yml index 67e4a2604..aa0901f40 100644 --- a/.github/workflows/generate-docs.yml +++ b/.github/workflows/generate-docs.yml @@ -32,7 +32,7 @@ jobs: token: ${{ secrets.PUSH_TOKEN }} - name: Fetch linux binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: grain-linux-x64 diff --git a/.github/workflows/test-pkg.yml b/.github/workflows/test-pkg.yml index cc76f05ba..1d0c4294a 100644 --- a/.github/workflows/test-pkg.yml +++ b/.github/workflows/test-pkg.yml @@ -30,7 +30,7 @@ jobs: ref: ${{ inputs.ref }} - name: Fetch pkg binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: grain-${{ matrix.name }}-x64 diff --git a/.github/workflows/upload-binaries.yml b/.github/workflows/upload-binaries.yml index 05b32710c..ac264041e 100644 --- a/.github/workflows/upload-binaries.yml +++ b/.github/workflows/upload-binaries.yml @@ -41,7 +41,7 @@ jobs: git push origin ${{ inputs.tag }} -f - name: Fetch linux binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: grain-linux-x64 @@ -55,7 +55,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.UPLOAD_TOKEN }} - name: Fetch mac binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: grain-mac-x64 @@ -69,7 +69,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.UPLOAD_TOKEN }} - name: Fetch win binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: grain-win-x64