Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci_coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/
Expand All @@ -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
Expand All @@ -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/
Expand All @@ -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"
Expand All @@ -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
Expand All @@ -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/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_emulated_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/
Expand All @@ -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
Expand All @@ -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/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_native_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/
Expand All @@ -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
Expand All @@ -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\
Expand Down
Loading