diff --git a/.github/workflows/check-pull-request.yml b/.github/workflows/check-pull-request.yml index e617054..edc09e4 100644 --- a/.github/workflows/check-pull-request.yml +++ b/.github/workflows/check-pull-request.yml @@ -17,10 +17,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Test code and Create Test Coverage Reports - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: .nvmrc cache: npm diff --git a/.github/workflows/publish-hotfix.yml b/.github/workflows/publish-hotfix.yml index ee9143b..e8dd50b 100644 --- a/.github/workflows/publish-hotfix.yml +++ b/.github/workflows/publish-hotfix.yml @@ -18,12 +18,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # Depth 0 is required for branch-based versioning - name: Test code and Create Test Coverage Reports - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: .nvmrc cache: npm diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 35ad2a8..a816e15 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build and Publish uses: DEFRA/cdp-build-action/build@main