From 25c90a6a3c9ce40fc594d8ec81fd5a7e2c0b7c63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 19:03:27 +0000 Subject: [PATCH] chore(gha): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/R-CMD-check.yaml | 4 ++-- .github/workflows/publish-documentation-pr-preview.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index cf0e6da..eeb1d8e 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -69,7 +69,7 @@ jobs: R CMD build . ls -la - name: Upload the source package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.config.os }}-r${{ matrix.config.r }}-source-package path: bpmnVisualizationR_*.tar.gz @@ -79,7 +79,7 @@ jobs: - name: Upload source package check results if: ${{ failure() && steps.source_package_checks.outcome == 'failure' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.config.os }}-r${{ matrix.config.r }}-source-package-check-results path: bpmnVisualizationR.Rcheck diff --git a/.github/workflows/publish-documentation-pr-preview.yml b/.github/workflows/publish-documentation-pr-preview.yml index bcd6283..5c731cc 100644 --- a/.github/workflows/publish-documentation-pr-preview.yml +++ b/.github/workflows/publish-documentation-pr-preview.yml @@ -33,7 +33,7 @@ jobs: # Always upload the website for local browsing and when it cannot be deployed to surge - name: Upload documentation if: github.event.action != 'closed' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: documentation-${{github.sha}} path: docs