diff --git a/.github/workflows/ci_coverage.yaml b/.github/workflows/ci_coverage.yaml index b26d9b7..9beda86 100644 --- a/.github/workflows/ci_coverage.yaml +++ b/.github/workflows/ci_coverage.yaml @@ -23,7 +23,7 @@ jobs: needs-init: ${{ steps.check.outputs.needs-init }} steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive @@ -48,7 +48,7 @@ jobs: docker compose run -v "$(pwd)/ext:/ext" --rm shell pskel init skeleton - name: Upload initialized extension if: steps.check.outputs.needs-init == 'true' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: initialized-ext-coverage path: ext/ @@ -63,7 +63,7 @@ jobs: ts: ['cli', 'zts'] steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive @@ -76,7 +76,7 @@ jobs: rm -f "${ARCHIVE_PATH}" - name: Download initialized extension if: needs.init.outputs.needs-init == 'true' - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: initialized-ext-coverage path: ext/ @@ -94,7 +94,7 @@ jobs: docker compose run -v "$(pwd)/lcov.info:/ext/lcov.info" --rm shell pskel coverage mv "lcov.info" "${{ matrix.platform }}_${{ matrix.versions }}_${{ matrix.ts }}_lcov.info" - name: Upload coverage artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: coverage-${{ matrix.platform }}-${{ matrix.versions }}-${{ matrix.ts }} path: "${{ matrix.platform }}_${{ matrix.versions }}_${{ matrix.ts }}_lcov.info" @@ -110,7 +110,7 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive @@ -126,14 +126,14 @@ jobs: sudo apt-get update sudo apt-get install -y "lcov" - name: Download all coverage artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: pattern: coverage-* merge-multiple: true path: coverage-files/ - name: Download initialized extension if: needs.init.outputs.needs-init == 'true' - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: initialized-ext-coverage path: ext/ diff --git a/.github/workflows/ci_emulated_linux.yaml b/.github/workflows/ci_emulated_linux.yaml index 2105b8e..71343e7 100644 --- a/.github/workflows/ci_emulated_linux.yaml +++ b/.github/workflows/ci_emulated_linux.yaml @@ -22,7 +22,7 @@ jobs: distro: ['trixie', 'alpine'] steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive diff --git a/.github/workflows/ci_macos.yaml b/.github/workflows/ci_macos.yaml index db57783..32d0df8 100644 --- a/.github/workflows/ci_macos.yaml +++ b/.github/workflows/ci_macos.yaml @@ -18,7 +18,7 @@ jobs: needs-init: ${{ steps.check.outputs.needs-init }} steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive @@ -46,7 +46,7 @@ jobs: docker compose run -v"$(pwd)/ext:/ext" --rm shell pskel init example - name: Upload initialized extension if: steps.check.outputs.needs-init == 'true' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: initialized-ext-macos path: ext/ @@ -64,7 +64,7 @@ jobs: ts: ['ts', 'nts'] steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive @@ -80,7 +80,7 @@ jobs: rm -f "${ARCHIVE_PATH}" - name: Download initialized extension if: needs.init.outputs.needs-init == 'true' - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: initialized-ext-macos path: ext/ diff --git a/.github/workflows/ci_native_linux.yaml b/.github/workflows/ci_native_linux.yaml index 322ab56..e0df216 100644 --- a/.github/workflows/ci_native_linux.yaml +++ b/.github/workflows/ci_native_linux.yaml @@ -23,7 +23,7 @@ jobs: runs-on: ${{ matrix.runs-on }} steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive diff --git a/.github/workflows/ci_prepare.yaml b/.github/workflows/ci_prepare.yaml index 19044c6..34dddc3 100644 --- a/.github/workflows/ci_prepare.yaml +++ b/.github/workflows/ci_prepare.yaml @@ -42,7 +42,7 @@ jobs: tar -czf "${ARCHIVE_PATH}" -C "$(dirname "${GITHUB_WORKSPACE}")" "${REPO_DIR}" echo "archive-path=${ARCHIVE_PATH}" >> "${GITHUB_OUTPUT}" - name: Upload prepared workspace - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ steps.metadata.outputs.artifact_name }} path: ${{ steps.archive.outputs.archive-path }} diff --git a/.github/workflows/ci_windows.yaml b/.github/workflows/ci_windows.yaml index 9c97b39..caefa5e 100644 --- a/.github/workflows/ci_windows.yaml +++ b/.github/workflows/ci_windows.yaml @@ -18,7 +18,7 @@ jobs: needs-init: ${{ steps.check.outputs.needs-init }} steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive @@ -43,7 +43,7 @@ jobs: docker compose run -v"$(pwd)/ext:/ext" --rm shell pskel init example - name: Upload initialized extension if: steps.check.outputs.needs-init == 'true' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: initialized-ext-windows path: ext/ @@ -61,7 +61,7 @@ jobs: ts: ['ts', 'nts'] steps: - name: Download prepared workspace - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.artifact_name }} path: ${{ runner.temp }}/source-archive @@ -76,7 +76,7 @@ jobs: Remove-Item $archivePath - name: Download initialized extension if: needs.init.outputs.needs-init == 'true' - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: initialized-ext-windows path: ext\