From d97bb7c13d4d6cf2ca99de89c86b6094dfc2a743 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 May 2024 03:04:37 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 4 ++-- .github/workflows/deploy.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a7b94592..6c2d3194 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -28,7 +28,7 @@ jobs: # Check that the Jekyll can actually build steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build the site in the jekyll/builder container run: | docker run \ @@ -43,7 +43,7 @@ jobs: # Check markdown files are markdown-lint compliant steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Lint markdown files with markdown-lint uses: articulate/actions-markdownlint@v1.1.0 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 59b37619..6c1b7d21 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,7 +11,7 @@ jobs: outputs: target: ${{ steps.set-output.outputs.target }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: get deployment target run: | @@ -44,7 +44,7 @@ jobs: if: needs.set-deploy-type.outputs.target == 'gh-pages' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Deploy Jekyll Site uses: sujaykundu777/jekyll-deploy-action@1.0.3 @@ -59,7 +59,7 @@ jobs: if: needs.set-deploy-type.outputs.target == 'firebase' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: setup ruby uses: ruby/setup-ruby@v1