Skip to content

Commit b3d63ba

Browse files
authored
Merge branch 'main' into dependabot/github_actions/NHSDigital/eps-common-workflows/dot-github/workflows/tag-release.yml-5.1.23
2 parents 0e186a1 + 966aecc commit b3d63ba

File tree

18 files changed

+627
-109
lines changed

18 files changed

+627
-109
lines changed

.github/workflows/cdk_package_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
packages: read
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
22+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
2323
with:
2424
ref: ${{ env.BRANCH_NAME }}
2525

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
tag_format: ${{ steps.load-config.outputs.TAG_FORMAT }}
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
18+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
1919

2020
- name: Get asdf version
2121
id: asdf-version

.github/workflows/delete_old_cloudformation_stacks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# Steps represent a sequence of tasks that will be executed as part of the job
2020
steps:
2121
- name: Checkout local github scripts
22-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
22+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
2323
with:
2424
ref: ${{ env.BRANCH_NAME }}
2525
sparse-checkout: |

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
tag_format: ${{ steps.load-config.outputs.TAG_FORMAT }}
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
24+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
2525

2626
- name: Get asdf version
2727
id: asdf-version
@@ -38,7 +38,7 @@ jobs:
3838
commit_message: ${{ steps.commit_message.outputs.commit_message }}
3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
41+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
4242
with:
4343
ref: ${{ env.BRANCH_NAME }}
4444
fetch-depth: 0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
tag_format: ${{ steps.load-config.outputs.TAG_FORMAT }}
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
17+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
1818

1919
- name: Get asdf version
2020
id: asdf-version

.github/workflows/release_all_stacks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
contents: write
103103
steps:
104104
- name: Checkout local github actions
105-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
105+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
106106
with:
107107
ref: ${{ env.BRANCH_NAME }}
108108
fetch-depth: 0
@@ -588,7 +588,7 @@ jobs:
588588
steps:
589589
- name: Checkout gh-pages
590590
if: ${{ inputs.IS_PULL_REQUEST == false }}
591-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
591+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
592592
with:
593593
ref: gh-pages
594594
path: gh-pages

.github/workflows/run_regression_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout local github actions
28-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
28+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
2929
with:
3030
ref: ${{ env.BRANCH_NAME }}
3131
fetch-depth: 0
@@ -73,8 +73,8 @@ jobs:
7373
GITHUB-TOKEN: ${{ steps.generate-token.outputs.token }}
7474
run: |
7575
if [[ "$TARGET_ENVIRONMENT" != "prod" && "$TARGET_ENVIRONMENT" != "ref" ]]; then
76-
REGRESSION_TEST_REPO_TAG="v3.4.35" # This is the tag or branch of the regression test code to run, usually a version tag like v3.1.0 or a branch name
77-
REGRESSION_TEST_WORKFLOW_TAG="v3.4.24" # This is the tag of the github workflow to run, usually the same as REGRESSION_TEST_REPO_TAG
76+
REGRESSION_TEST_REPO_TAG="v3.5.10" # This is the tag or branch of the regression test code to run, usually a version tag like v3.1.0 or a branch name
77+
REGRESSION_TEST_WORKFLOW_TAG="v3.5.10" # This is the tag of the github workflow to run, usually the same as REGRESSION_TEST_REPO_TAG
7878
7979
if [[ -z "$REGRESSION_TEST_REPO_TAG" || -z "$REGRESSION_TEST_WORKFLOW_TAG" ]]; then
8080
echo "Error: One or both tag variables are not set" >&2

0 commit comments

Comments
 (0)