diff --git a/.github/workflows/abi.yaml b/.github/workflows/abi.yaml index 393322e56..dff3277fa 100644 --- a/.github/workflows/abi.yaml +++ b/.github/workflows/abi.yaml @@ -45,7 +45,7 @@ jobs: - name: create ABI run: make -Orecurse -j$(grep -c ^processor /proc/cpuinfo) abi.tar.gz - name: save ABI - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: abi path: abi @@ -56,7 +56,7 @@ jobs: run: make abi-test - name: save differences if: ${{ steps.compare.outcome == 'failure' }} - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: abi-test path: abi-test diff --git a/.github/workflows/foreign.yaml b/.github/workflows/foreign.yaml index 9e4d35e0f..ba7f54ff1 100644 --- a/.github/workflows/foreign.yaml +++ b/.github/workflows/foreign.yaml @@ -40,7 +40,7 @@ jobs: - name: create binary archive run: make test-progs.tar - name: upload binary archive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: cross-${{ matrix.os }}-${{ matrix.arch }} path: test-progs.tar @@ -61,7 +61,7 @@ jobs: run: echo CONTAINER_ARCH="arm/v7" >> $GITHUB_ENV if: ${{ matrix.arch == 'armhf' }} - name: download binary archive - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: cross-${{ matrix.os }}-${{ matrix.arch }} - name: unpack binary archive @@ -100,7 +100,7 @@ jobs: run: echo CONTAINER_ARCH="arm/v7" >> $GITHUB_ENV if: ${{ matrix.arch == 'armhf' }} - name: download binary archive - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: cross-${{ matrix.os }}-${{ matrix.arch }} - name: unpack binary archive diff --git a/.github/workflows/native.yaml b/.github/workflows/native.yaml index 80ff6df56..950670d1a 100644 --- a/.github/workflows/native.yaml +++ b/.github/workflows/native.yaml @@ -57,7 +57,7 @@ jobs: - name: create binary archive run: make ${{ env.ARCHIVE_TGT }} - name: upload binary archive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: native-${{ matrix.os }} path: ${{ env.ARCHIVE_TGT }} @@ -98,7 +98,7 @@ jobs: uses: actions/checkout@v1 - name: download binary archive - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: native-${{ matrix.os }} - name: unpack binary archive