From 56489248875dec780a1d43d2a0648a96dd65cc22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 07:26:28 +0000 Subject: [PATCH] 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/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cea2845e0b..019d355dd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: ls -Name "*.*" | foreach { tar acf "../artifact/${_}.tar.xz" $_ } - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: statichtml-${{ matrix.os }}-${{ matrix.ruby }} path: /tmp/artifact/*.*.tar.xz @@ -84,7 +84,7 @@ jobs: git diff --no-index html.base html.pr --stat || true git diff --no-index html.base html.pr --output artifact/html.diff || true if: ${{ steps.generate_base.outcome == 'success' }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: diff-${{ matrix.os }}-${{ matrix.ruby }} path: /tmp/artifact/html.diff