From 6a14ba9130d2274e52ab36fc87345b00e52a03ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 10:25:17 +0100 Subject: [PATCH] deps: bump actions/upload-artifact from 3 to 4 (#372) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Co-authored-by: Jorge Martinez --- .github/workflows/ci_cd.yml | 2 +- _release-pypi/action.yml | 2 +- doc-deploy-dev/action.yml | 2 +- doc-deploy-index/action.yml | 2 +- doc-deploy-stable/action.yml | 2 +- release-github/action.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 3f6ced938..e836206ce 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -163,7 +163,7 @@ jobs: ls -R && python -m build && python -m twine check dist/* - name: "Upload distribution artifacts to GitHub artifacts" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.test-library-name }}-artifacts path: ~/${{ env.test-library-name }}/dist/ diff --git a/_release-pypi/action.yml b/_release-pypi/action.yml index 235a4479a..775a474dc 100644 --- a/_release-pypi/action.yml +++ b/_release-pypi/action.yml @@ -68,7 +68,7 @@ runs: python -m pip install --upgrade pip twine - name: "Download the library artifacts from build-library step" - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.library-name }}-artifacts path: ${{ inputs.library-name }}-artifacts diff --git a/doc-deploy-dev/action.yml b/doc-deploy-dev/action.yml index d2a48e071..41efb638b 100644 --- a/doc-deploy-dev/action.yml +++ b/doc-deploy-dev/action.yml @@ -151,7 +151,7 @@ runs: rm -rf version/dev && mkdir -p version/dev - name: "Download the development documentation artifact" - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.doc-artifact-name }} path: version/dev diff --git a/doc-deploy-index/action.yml b/doc-deploy-index/action.yml index 9e04118ed..8355ee142 100644 --- a/doc-deploy-index/action.yml +++ b/doc-deploy-index/action.yml @@ -103,7 +103,7 @@ runs: Download the documentation artifact from the current workflow. - name: "Download the development documentation artifact" - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.doc-artifact-name }} path: ${{ inputs.doc-artifact-name }} diff --git a/doc-deploy-stable/action.yml b/doc-deploy-stable/action.yml index 1a330dc76..9cb34ffc0 100644 --- a/doc-deploy-stable/action.yml +++ b/doc-deploy-stable/action.yml @@ -217,7 +217,7 @@ runs: rm -rf version/${{ env.VERSION }} && mkdir -p version/${{ env.VERSION }} - name: "Download the stable documentation artifact" - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.doc-artifact-name }} path: version/${{ env.VERSION }} diff --git a/release-github/action.yml b/release-github/action.yml index a5735e0ab..464083af3 100644 --- a/release-github/action.yml +++ b/release-github/action.yml @@ -54,7 +54,7 @@ runs: directory containing the final artifacts to be published in GitHub. - name: "Download all artifacts that got generated in the CI/CD" - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: /tmp/artifacts