File tree Expand file tree Collapse file tree 6 files changed +15
-15
lines changed
Expand file tree Collapse file tree 6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1515 tag_format : ${{ steps.load-config.outputs.TAG_FORMAT }}
1616 steps :
1717 - name : Checkout code
18- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
18+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1919
2020 - name : Get asdf version
2121 id : asdf-version
2626 TAG_FORMAT=$(yq '.TAG_FORMAT' .github/config/settings.yml)
2727 echo "TAG_FORMAT=$TAG_FORMAT" >> "$GITHUB_OUTPUT"
2828 quality_checks :
29- uses : NHSDigital/eps-common-workflows/.github/workflows/quality-checks.yml@a2edde3fb0e9816a25a5ba4923b4d509db83f552
29+ uses : NHSDigital/eps-common-workflows/.github/workflows/quality-checks.yml@b933ef1bb3527fd7e7d5a7629fbd4e4dd94bf1b4
3030 needs : [get_asdf_version]
3131 secrets :
3232 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
4646
4747 tag_release :
4848 needs : [quality_checks, get_commit_id, get_asdf_version]
49- uses : NHSDigital/eps-common-workflows/.github/workflows/tag-release.yml@a2edde3fb0e9816a25a5ba4923b4d509db83f552
49+ uses : NHSDigital/eps-common-workflows/.github/workflows/tag-release.yml@b933ef1bb3527fd7e7d5a7629fbd4e4dd94bf1b4
5050 with :
5151 dry_run : true
5252 asdfVersion : ${{ needs.get_asdf_version.outputs.asdf_version }}
Original file line number Diff line number Diff line change 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@8e8c483db84b4bee98b60c0593521ed34d9990e8
22+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2323 with :
2424 ref : ${{ env.BRANCH_NAME }}
2525 sparse-checkout : |
Original file line number Diff line number Diff line change 1010jobs :
1111 dependabot-auto-approve-and-merge :
1212 needs : quality_checks
13- uses : NHSDigital/eps-common-workflows/.github/workflows/dependabot-auto-approve-and-merge.yml@a2edde3fb0e9816a25a5ba4923b4d509db83f552
13+ uses : NHSDigital/eps-common-workflows/.github/workflows/dependabot-auto-approve-and-merge.yml@b933ef1bb3527fd7e7d5a7629fbd4e4dd94bf1b4
1414 secrets :
1515 AUTOMERGE_APP_ID : ${{ secrets.AUTOMERGE_APP_ID }}
1616 AUTOMERGE_PEM : ${{ secrets.AUTOMERGE_PEM }}
2121 tag_format : ${{ steps.load-config.outputs.TAG_FORMAT }}
2222 steps :
2323 - name : Checkout code
24- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
24+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2525
2626 - name : Get asdf version
2727 id : asdf-version
3232 TAG_FORMAT=$(yq '.TAG_FORMAT' .github/config/settings.yml)
3333 echo "TAG_FORMAT=$TAG_FORMAT" >> "$GITHUB_OUTPUT"
3434 quality_checks :
35- uses : NHSDigital/eps-common-workflows/.github/workflows/quality-checks.yml@a2edde3fb0e9816a25a5ba4923b4d509db83f552
35+ uses : NHSDigital/eps-common-workflows/.github/workflows/quality-checks.yml@b933ef1bb3527fd7e7d5a7629fbd4e4dd94bf1b4
3636 needs : [get_asdf_version]
3737 with :
3838 asdfVersion : ${{ needs.get_asdf_version.outputs.asdf_version }}
4141 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
4242
4343 pr_title_format_check :
44- uses : NHSDigital/eps-common-workflows/.github/workflows/pr_title_check.yml@a2edde3fb0e9816a25a5ba4923b4d509db83f552
44+ uses : NHSDigital/eps-common-workflows/.github/workflows/pr_title_check.yml@b933ef1bb3527fd7e7d5a7629fbd4e4dd94bf1b4
4545
4646 get_issue_number :
4747 runs-on : ubuntu-22.04
7272
7373 tag_release :
7474 needs : [get_asdf_version]
75- uses : NHSDigital/eps-common-workflows/.github/workflows/tag-release.yml@a2edde3fb0e9816a25a5ba4923b4d509db83f552
75+ uses : NHSDigital/eps-common-workflows/.github/workflows/tag-release.yml@b933ef1bb3527fd7e7d5a7629fbd4e4dd94bf1b4
7676 with :
7777 dry_run : true
7878 asdfVersion : ${{ needs.get_asdf_version.outputs.asdf_version }}
Original file line number Diff line number Diff line change 1414 tag_format : ${{ steps.load-config.outputs.TAG_FORMAT }}
1515 steps :
1616 - name : Checkout code
17- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
17+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1818
1919 - name : Get asdf version
2020 id : asdf-version
2525 TAG_FORMAT=$(yq '.TAG_FORMAT' .github/config/settings.yml)
2626 echo "TAG_FORMAT=$TAG_FORMAT" >> "$GITHUB_OUTPUT"
2727 quality_checks :
28- uses : NHSDigital/eps-common-workflows/.github/workflows/quality-checks.yml@a2edde3fb0e9816a25a5ba4923b4d509db83f552
28+ uses : NHSDigital/eps-common-workflows/.github/workflows/quality-checks.yml@b933ef1bb3527fd7e7d5a7629fbd4e4dd94bf1b4
2929 needs : [get_asdf_version]
3030 secrets :
3131 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
4545
4646 tag_release :
4747 needs : [quality_checks, get_commit_id, get_asdf_version]
48- uses : NHSDigital/eps-common-workflows/.github/workflows/tag-release.yml@a2edde3fb0e9816a25a5ba4923b4d509db83f552
48+ uses : NHSDigital/eps-common-workflows/.github/workflows/tag-release.yml@b933ef1bb3527fd7e7d5a7629fbd4e4dd94bf1b4
4949 with :
5050 dry_run : false
5151 asdfVersion : ${{ needs.get_asdf_version.outputs.asdf_version }}
Original file line number Diff line number Diff line change 1616 java-version : " 21"
1717 distribution : " adopt"
1818 - name : Checkout code
19- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
19+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2020 with :
2121 ref : ${{ env.BRANCH_NAME }}
2222 - name : Get asdf version
Original file line number Diff line number Diff line change 6464
6565 steps :
6666 - name : Checkout local github actions
67- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
67+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
6868 with :
6969 ref : ${{ env.BRANCH_NAME }}
7070 fetch-depth : 0
@@ -141,7 +141,7 @@ jobs:
141141 DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE : ${{ secrets.DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE }}
142142
143143 - name : Checkout gh-pages
144- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
144+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
145145 with :
146146 ref : gh-pages
147147 path : gh-pages
You can’t perform that action at this time.
0 commit comments