Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/error_handling_utils_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/my-vaccs-int-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
echo "Workflow triggered by allowed repository: $CALLER_REPO"

- name: Checkout main
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6
with:
repository: NHSDigital/eligibility-signposting-api-regression-tests
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo "spawn_rate: ${spawn_rate}"

- name: Checkout
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5

# using git commit sha for version of action to ensure we have stable version
- name: Install asdf
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
fetch-depth: 0
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
.git

- name: SonarQube
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regression_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
echo run identifier "$ID"-"$ENV" >> "$GITHUB_STEP_SUMMARY"

- name: Checkout
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
ref: ${{ inputs.github_tag }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
spec_version: ${{steps.output_version_tag.outputs.SPEC_VERSION}}
steps:
- name: Checkout code
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6
with:
ref: ${{ env.BRANCH_NAME }}
fetch-depth: 0
Expand Down
Loading