From ca282ccb18afb9b8fe5e2c4b998d67f9e881a3a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 00:32:40 +0000 Subject: [PATCH] fix(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/demo.yml | 2 +- .github/workflows/shipjs-trigger.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21597588..b0f8f063 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,11 +18,11 @@ jobs: steps: - name: Check out repository ✨ (non dependabot) if: ${{ github.actor != 'dependabot[bot]' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check out repository 🎉 (dependabot) if: ${{ github.actor == 'dependabot[bot]' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 6a29bafc..2bbdafc6 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@v2 diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index afd0eb4c..08cc3940 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -13,7 +13,7 @@ jobs: working-directory: './example/' steps: - name: Checkout 🛎️ - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false diff --git a/.github/workflows/shipjs-trigger.yml b/.github/workflows/shipjs-trigger.yml index 50529743..fcf57b1f 100644 --- a/.github/workflows/shipjs-trigger.yml +++ b/.github/workflows/shipjs-trigger.yml @@ -10,7 +10,7 @@ jobs: if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/v') steps: - name: Checkout code 🛎 - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ref: main