From 3d6d141fa8b98ff4debd19a424e5cc02cef3acfd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 11:38:35 +0000 Subject: [PATCH] chore(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/action-testing.yml | 4 ++-- .github/workflows/release-action.yml | 2 +- .github/workflows/unit-testing.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action-testing.yml b/.github/workflows/action-testing.yml index c5136f9..3a749a9 100644 --- a/.github/workflows/action-testing.yml +++ b/.github/workflows/action-testing.yml @@ -15,12 +15,12 @@ jobs: steps: - name: 🏠 Checkout locally if: ${{ env.ACT }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: check-new-commits-action - name: 💻 Checkout from GitHub if: ${{ !env.ACT }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 🔄 Test the action with currrent repo content id: check-new-commits uses: ./ diff --git a/.github/workflows/release-action.yml b/.github/workflows/release-action.yml index 227e370..1e5f73f 100644 --- a/.github/workflows/release-action.yml +++ b/.github/workflows/release-action.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 💻 Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: master fetch-depth: 0 diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index 1f9afc2..f27348b 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 💻 Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 🔨 Read .nvmrc id: read_nvmrc run: |