diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c18c030..1252399 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: steps: # Checkout the code in the pull request - name: 'Checkout source code' - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: 'Setup node' uses: actions/setup-node@v4 @@ -40,7 +40,7 @@ jobs: steps: # Checkout the source code - name: 'Checkout source code' - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Install PMD - name: 'Install PMD' diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index 597da8f..8490a6d 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout source code' - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Dependencies run: npm install @salesforce/cli --global - name: Populate auth file diff --git a/.github/workflows/dependabot-approve-and-auto-merge.yml b/.github/workflows/dependabot-approve-and-auto-merge.yml index a3cf0f1..86fc864 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@v6 - name: 'Fetch Dependabot metadata' id: dependabot-fetch diff --git a/.github/workflows/pmd.yml b/.github/workflows/pmd.yml index aecd726..8e12075 100644 --- a/.github/workflows/pmd.yml +++ b/.github/workflows/pmd.yml @@ -15,7 +15,7 @@ jobs: pmd-code-scan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up JDK 17 uses: actions/setup-java@v4 with: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 5df9732..5a5ba4d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,7 +18,7 @@ jobs: steps: # Checkout the code in the pull request - name: 'Checkout source code' - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: 'Setup node' uses: actions/setup-node@v4 @@ -40,7 +40,7 @@ jobs: steps: # Checkout the source code - name: 'Checkout source code' - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Install Salesforce CLI - name: 'Install Salesforce CLI'