From 53d8855ca41e48984db326946d7afe0ec514258f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 19 Nov 2022 13:26:36 +0000 Subject: [PATCH] Bump actions/upload-artifact from 2 to 3 (#8599) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- .github/workflows/bootstrap.yml | 2 +- .github/workflows/users-guide.yml | 2 +- .github/workflows/validate.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 64233f3c4..a134d94ed 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -51,7 +51,7 @@ jobs: run: | _build/bin/cabal --version - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: cabal-${{ matrix.os }}-${{ matrix.ghc }}-bootstrapped path: _build/artifacts/* diff --git a/.github/workflows/users-guide.yml b/.github/workflows/users-guide.yml index 2d16715b7..b9f8de973 100644 --- a/.github/workflows/users-guide.yml +++ b/.github/workflows/users-guide.yml @@ -67,7 +67,7 @@ jobs: run: | make SPHINX_HTML_OUTDIR=html users-guide - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: users-guide-html path: html/ diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index de9946267..21d05b6e8 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -151,7 +151,7 @@ jobs: # - Make it available in the workflow to make easier testing it locally - name: Upload cabal-install executable to workflow artifacts if: matrix.cli != 'false' && matrix.ghc == env.GHC_FOR_RELEASE - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cabal-${{ runner.os }}-${{ matrix.ghc }} path: ${{ env.CABAL_EXEC_TAR }} -- 2.11.4.GIT