diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index 5a82827..a20f5a5 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -54,7 +54,7 @@ jobs: steps: # Checks-out the repository under $GITHUB_WORKSPACE - name: Clone Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Set up NodeJS on the build host with caching support to optimize execution - name: Setup Node.JS Runtime diff --git a/.github/workflows/Security-AdvancedSecretScan.yml b/.github/workflows/Security-AdvancedSecretScan.yml index 4fee182..b258c43 100644 --- a/.github/workflows/Security-AdvancedSecretScan.yml +++ b/.github/workflows/Security-AdvancedSecretScan.yml @@ -71,7 +71,7 @@ jobs: fi # Downloads the repo at the specified depth calculated previously - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{env.branch}} fetch-depth: ${{env.depth}} diff --git a/.github/workflows/Security-Reachability.yaml b/.github/workflows/Security-Reachability.yaml index c4b7e49..76596a8 100644 --- a/.github/workflows/Security-Reachability.yaml +++ b/.github/workflows/Security-Reachability.yaml @@ -38,7 +38,7 @@ jobs: steps: # Downloads the repo at the specified depth calculated previously - name: Clone Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # For PRs, fetch one additional commit for proper diff analysis fetch-depth: ${{ github.event_name == 'pull_request' && 2 || 0 }} diff --git a/.github/workflows/Test-Build.yml b/.github/workflows/Test-Build.yml index aaa6d69..e69c26a 100644 --- a/.github/workflows/Test-Build.yml +++ b/.github/workflows/Test-Build.yml @@ -31,7 +31,7 @@ jobs: # Set of execution steps to perform steps: # Checks-out your repository under $GITHUB_WORKSPACE - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Set up NodeJS on the build host - name: Setup Node.JS Environment diff --git a/.github/workflows/Test-Lint.yml b/.github/workflows/Test-Lint.yml index eec2dd6..03845f4 100644 --- a/.github/workflows/Test-Lint.yml +++ b/.github/workflows/Test-Lint.yml @@ -31,7 +31,7 @@ jobs: # Set of steps to run to lint the project steps: # Checks-out your repository under $GITHUB_WORKSPACE - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Set up NodeJS on the build host - name: Setup Node.js environment diff --git a/.github/workflows/Test-Unit.yml b/.github/workflows/Test-Unit.yml index 4cff698..b0c269d 100644 --- a/.github/workflows/Test-Unit.yml +++ b/.github/workflows/Test-Unit.yml @@ -32,7 +32,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE - name: Download Source Code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Set up NodeJS on the build host - name: Set up the Node.JS Runtime