Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-monorepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
touch "$TEMP/digests/${DIGEST#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: digests-linux-${{ matrix.platform }}
path: ${{ runner.temp }}/digests/*
Expand All @@ -152,7 +152,7 @@ jobs:

steps:
- name: Download digests
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: ${{ runner.temp }}/digests
pattern: digests-*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
touch "$TEMP/digests/${DIGEST#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: digests-linux-${{ matrix.platform }}
path: ${{ runner.temp }}/digests/*
Expand All @@ -153,7 +153,7 @@ jobs:

steps:
- name: Download digests
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: ${{ runner.temp }}/digests
pattern: digests-*
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
run: tar --owner=0 --group=0 --xz -cvvf build.tar.xz -C "$BUILD_BASE" --transform 's,^\.,build,' .

- name: Store build as artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: jetpack-build
path: build.tar.xz
Expand All @@ -160,7 +160,7 @@ jobs:

- name: Store plugins.tsv as artifact
if: steps.plugins.outputs.any == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: plugins.tsv
path: ${{ env.BUILD_BASE }}/plugins.tsv
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
path: monorepo

- name: Download build artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: jetpack-build
- name: Extract build archive
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
echo "any-built=$ANY_BUILT" >> "$GITHUB_OUTPUT"

- name: Create plugins artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: steps.prepare.outputs.any-built == 'true'
with:
name: plugins
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
timeout-minutes: 1 # 2025-11-06: Successful runs seem to take a few seconds

- name: Download build artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: jetpack-build
timeout-minutes: 2 # 2025-11-06: Successful runs normally take a few seconds
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ jobs:
- name: Upload test artifacts
if: ${{ always() }}
continue-on-error: true
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-output-${{ matrix.project }}
path: ${{ matrix.path }}/output
Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:
working-directory: ./projects/github-actions/test-results-to-slack

- name: Download test artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: test-output

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ jobs:
- name: Upload artifacts
id: upload-artifacts
if: always() && steps.check-artifacts.outputs.any == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.artifact }}
path: artifacts
Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
uses: ./.github/actions/tool-setup

- name: Download coverage artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: 'Code coverage'
path: coverage
Expand Down
Loading