From 30222535a1fc042c35da2d623c64ed6f879d3789 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 May 2024 18:32:19 +0000 Subject: [PATCH] chore(deps): bump the official-actions group with 4 updates Bumps the official-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact), [actions/setup-node](https://github.com/actions/setup-node) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) Updates `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/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: official-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: official-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: official-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: official-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/aws-prod.yaml | 2 +- .github/workflows/aws-test.yaml | 2 +- .github/workflows/build.yaml | 2 +- .github/workflows/ci.yaml | 4 ++-- .github/workflows/clipper-archive.yaml | 2 +- .github/workflows/gh-pages.yaml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/aws-prod.yaml b/.github/workflows/aws-prod.yaml index bad9fabd..ae5ba76f 100644 --- a/.github/workflows/aws-prod.yaml +++ b/.github/workflows/aws-prod.yaml @@ -20,7 +20,7 @@ jobs: # Deploy to gh-pages should be in a git directory - name: Download Artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: blog-next path: out diff --git a/.github/workflows/aws-test.yaml b/.github/workflows/aws-test.yaml index 03eca182..0e7ac44e 100644 --- a/.github/workflows/aws-test.yaml +++ b/.github/workflows/aws-test.yaml @@ -26,7 +26,7 @@ jobs: # Deploy to gh-pages should be in a git directory - name: Download Artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: blog-next path: out diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5aa3a344..4bc06e5a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -50,7 +50,7 @@ jobs: NEXT_PUBLIC_SITE_BASE_PATH: ${{ inputs.site-base-path }} - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: blog-next path: out diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a6ab2bf6..a6db1ee7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 16 cache: yarn diff --git a/.github/workflows/clipper-archive.yaml b/.github/workflows/clipper-archive.yaml index c4743db8..6a9d2dd8 100644 --- a/.github/workflows/clipper-archive.yaml +++ b/.github/workflows/clipper-archive.yaml @@ -27,7 +27,7 @@ jobs: cat ./public/data/clips.json - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: notion-clipper-archive path: ${{ steps.notion_clipper_archive.outputs.save_path }} diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index dcbb9b58..8745d676 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -26,7 +26,7 @@ jobs: # Deploy to gh-pages should be in a git directory - name: Download Artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: blog-next path: out