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"