From 2afdd3f9b1b88579d411e08a3c91660b37b8b3ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Dec 2025 12:26:33 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/jekyll-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/jekyll-build.yml b/.github/workflows/jekyll-build.yml index 01e487ba..32ec51a1 100644 --- a/.github/workflows/jekyll-build.yml +++ b/.github/workflows/jekyll-build.yml @@ -95,7 +95,7 @@ jobs: - name: Download input artifact if: env.INPUT_SITE_ARTIFACT != '' - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ env.INPUT_SITE_ARTIFACT }} path: project @@ -221,7 +221,7 @@ jobs: run: 7z a _site.zip ./_site/* - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: site path: _site.zip @@ -252,7 +252,7 @@ jobs: run: rm -f -r ./gh-pages/* - name: Download artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: site path: gh-pages