From 7ffe66cea94ce276c28f970ca7e7ee02e0a01779 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 18:30:39 +0000 Subject: [PATCH] build(actions): 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/codecov.yml | 2 +- .github/workflows/pr.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe77198..9f50173 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: steps: # Checkout the source code - name: "Checkout source code" - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Cache node_modules to speed up the process - name: "Restore node_modules cache" @@ -47,7 +47,7 @@ jobs: steps: # Checkout the source code - name: "Checkout source code" - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Install PMD - name: "Install PMD" diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 55e25a8..e09a0c6 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout source code" - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Dependencies run: | npm install @salesforce/cli --global diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index ac4fd70..3b1f253 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,7 +18,7 @@ jobs: steps: # Checkout the source code - name: "Checkout source code" - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Install Volta to enforce proper node and package manager versions - name: "Install Volta" @@ -51,7 +51,7 @@ jobs: steps: # Checkout the source code - name: "Checkout source code" - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Run PMD scan - name: "Run PMD scan"