aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2025-10-27 00:16:01 +0000
committerGravatar GitHub <[email protected]>2025-10-27 00:16:01 +0000
commit33b022f1216ba749281e666f230149b5769b82de (patch)
treef3084494b03321b240bebe18c56371d83cafac7a
parentUpdate test_forkbomb_resource_unavailable to disable memory limits (diff)
Bump the ci-dependencies group with 2 updatesdependabot/github_actions/ci-dependencies-3249c11fdc
Bumps the ci-dependencies group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
-rw-r--r--.github/workflows/build.yaml2
-rw-r--r--.github/workflows/deploy.yaml2
-rw-r--r--.github/workflows/test.yaml8
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 7678669..385989f 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -92,7 +92,7 @@ jobs:
# Make the image available as an artifact so other jobs will be able to
# download it.
- name: Upload image archive as an artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v5
with:
name: ${{ env.artifact }}
path: ${{ env.artifact }}.tar
diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml
index 23c76e9..e412e9f 100644
--- a/.github/workflows/deploy.yaml
+++ b/.github/workflows/deploy.yaml
@@ -18,7 +18,7 @@ jobs:
steps:
- name: Download image artifact
- uses: actions/download-artifact@v5
+ uses: actions/download-artifact@v6
with:
name: ${{ inputs.artifact }}
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index a7d66a1..8620587 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download image artifact
- uses: actions/download-artifact@v5
+ uses: actions/download-artifact@v6
with:
name: ${{ inputs.artifact }}
@@ -43,7 +43,7 @@ jobs:
# Upload it so the coverage from all matrix jobs can be combined later.
- name: Upload coverage data
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v5
with:
name: coverage
path: .coverage
@@ -70,7 +70,7 @@ jobs:
run: pip install -U -r requirements/coverage.pip
- name: Download coverage data
- uses: actions/download-artifact@v5
+ uses: actions/download-artifact@v6
with:
pattern: coverage
merge-multiple: true
@@ -95,7 +95,7 @@ jobs:
needs: test
steps:
- name: Download image artifact
- uses: actions/download-artifact@v5
+ uses: actions/download-artifact@v6
with:
name: ${{ inputs.artifact }}