diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bced813..7b1cd4a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: machine: x64 fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: python3 script/check_release.py --version ${{ env.version }} --target ${{ matrix.target }} --build-type ${{ matrix.build_type }} --machine ${{ matrix.machine }} if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} env: @@ -36,7 +36,7 @@ jobs: - run: python3 script/checkout.py --version ${{ env.version }} - run: python3 script/build.py --build-type ${{ matrix.build_type }} --target ${{ matrix.target }} --machine ${{ matrix.machine }} - run: python3 script/archive.py --version ${{ env.version }} --build-type ${{ matrix.build_type }} --target ${{ matrix.target }} --machine ${{ matrix.machine }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} with: name: Skia-${{ env.version }}-${{ matrix.target }}-${{ matrix.build_type }}-${{ matrix.machine }}.zip @@ -54,7 +54,7 @@ jobs: build_type: [Debug, Release] fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: ./script/prepare_linux.sh - run: python3 script/check_release.py --version ${{ env.version }} --build-type ${{ matrix.build_type }} if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} @@ -63,7 +63,7 @@ jobs: - run: PATH=/usr/lib/binutils-2.26/bin:$PATH python3 script/checkout.py --version ${{ env.version }} - run: PATH=/usr/lib/binutils-2.26/bin:$PATH python3 script/build.py --build-type ${{ matrix.build_type }} - run: PATH=/usr/lib/binutils-2.26/bin:$PATH python3 script/archive.py --version ${{ env.version }} --build-type ${{ matrix.build_type }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} with: name: Skia-${{ env.version }}-linux-${{ matrix.build_type }}-x64.zip @@ -81,7 +81,7 @@ jobs: build_type: [ Debug, Release ] fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: ./script/prepare_linux_wasm.sh - run: python3 script/check_release.py --version ${{ env.version }} --target wasm --build-type ${{ matrix.build_type }} --machine wasm if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} @@ -90,7 +90,7 @@ jobs: - run: python3 script/checkout.py --version ${{ env.version }} - run: python3 script/build.py --target wasm --machine wasm --build-type ${{ matrix.build_type }} - run: python3 script/archive.py --version ${{ env.version }} --target wasm --machine wasm --build-type ${{ matrix.build_type }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} with: name: Skia-${{ env.version }}-wasm-${{ matrix.build_type }}-wasm.zip @@ -109,7 +109,7 @@ jobs: machine: ["x64", "arm64"] fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: ./script/prepare_linux.sh - run: python3 script/check_release.py --version ${{ env.version }} --target android --build-type ${{ matrix.build_type }} --machine ${{ matrix.machine }} if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} @@ -122,7 +122,7 @@ jobs: ndk-version: r25c - run: python3 script/build.py --target android --build-type ${{ matrix.build_type }} --machine ${{ matrix.machine }} --ndk ${{ steps.setup-ndk.outputs.ndk-path }} - run: python3 script/archive.py --version ${{ env.version }} --target android --build-type ${{ matrix.build_type }} --machine ${{ matrix.machine }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} with: name: Skia-${{ env.version }}-android-${{ matrix.build_type }}-${{ matrix.machine }}.zip @@ -139,8 +139,8 @@ jobs: build_type: [ Debug, Release ] fail-fast: false steps: - - uses: actions/checkout@v2 - - uses: uraimo/run-on-arch-action@v2.0.5 + - uses: actions/checkout@v4 + - uses: uraimo/run-on-arch-action@v2.7.2 name: Assemble id: assemble if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} @@ -169,7 +169,7 @@ jobs: python3 script/build.py --build-type ${build_type} --build-type ${build_type} python3 script/archive.py --version ${build_version} --build-type ${build_type} echo "Produced artifact at ${PWD}/${artifact_name}" - - uses: uraimo/run-on-arch-action@v2.0.5 + - uses: uraimo/run-on-arch-action@v2.7.2 name: Test Build id: test-build if: ${{ github.event.inputs.skip_release == 'true' || github.ref != 'refs/heads/main' }} @@ -195,7 +195,7 @@ jobs: python3 script/checkout.py --version ${build_version} python3 script/build.py --build-type ${build_type} --build-type ${build_type} echo "Verified build" - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} with: name: Skia-${{ env.version }}-linux-${{ matrix.build_type }}-arm64.zip @@ -216,7 +216,7 @@ jobs: fail-fast: false steps: - run: git config --global core.autocrlf input - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: '3.9' @@ -225,7 +225,7 @@ jobs: if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: microsoft/setup-msbuild@v1 + - uses: microsoft/setup-msbuild@v2 - uses: ilammy/msvc-dev-cmd@v1 - shell: bash run: python3 script/checkout.py --version ${{ env.version }} @@ -233,7 +233,7 @@ jobs: run: python3 script/build.py --build-type ${{ matrix.build_type }} --target windows --machine ${{ matrix.machine }} - shell: bash run: python3 script/archive.py --version ${{ env.version }} --build-type ${{ matrix.build_type }} --target windows --machine ${{ matrix.machine }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} with: name: Skia-${{ env.version }}-windows-${{ matrix.build_type }}-${{ matrix.machine }}.zip