diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44951cf..80301b4 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@v4 + uses: actions/checkout@v5 # 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@v4 + uses: actions/checkout@v5 # Install PMD - name: 'Install PMD' diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 2967b30..1e80f18 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@v4 + uses: actions/checkout@v5 - name: Install Dependencies run: | npm install @salesforce/cli --global diff --git a/.github/workflows/dependabot-approve-and-auto-merge.yml b/.github/workflows/dependabot-approve-and-auto-merge.yml index 006e5ea..72894eb 100644 --- a/.github/workflows/dependabot-approve-and-auto-merge.yml +++ b/.github/workflows/dependabot-approve-and-auto-merge.yml @@ -13,7 +13,7 @@ jobs: steps: # Checkout the source code - name: 'Checkout source code' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Fetch Dependabot metadata' id: dependabot-fetch diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 05c1af3..ae2533e 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@v4 + uses: actions/checkout@v5 # 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@v4 + uses: actions/checkout@v5 # Run PMD scan - name: 'Run PMD scan'