Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit 7684ce6

Browse files
authored
Breaking: [AEA-0000] - use common workflows (#88)
fix it
1 parent 36d7633 commit 7684ce6

4 files changed

Lines changed: 10 additions & 19 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,6 @@
44

55
version: 2
66
updates:
7-
- package-ecosystem: "github-actions"
8-
# Workflow files stored in the
9-
# default location of `.github/workflows`
10-
directory: "/"
11-
schedule:
12-
interval: "daily"
13-
commit-message:
14-
prefix: "Upgrade: [dependabot] - "
15-
167
###################################
178
# python #########################
189
###################################

.github/workflows/pull_request.yml

Lines changed: 4 additions & 4 deletions
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@v5
18+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1919

2020
- name: Get asdf version
2121
id: asdf-version
@@ -27,19 +27,19 @@ jobs:
2727
echo "TAG_FORMAT=$TAG_FORMAT" >> "$GITHUB_OUTPUT"
2828
2929
quality_checks:
30-
uses: NHSDigital/eps-workflow-quality-checks/.github/workflows/quality-checks.yml@ad79b8f5d8dc258c9ec731dc9f6dc47c9f1e7375
30+
uses: NHSDigital/eps-common-workflows/.github/workflows/quality-checks.yml@551aab5ce8ce8c16c4a38c8114dfe86acc61bb13
3131
needs: [get_asdf_version]
3232
with:
3333
asdfVersion: ${{ needs.get_asdf_version.outputs.asdf_version }}
3434
secrets:
3535
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
3636

3737
pr_title_format_check:
38-
uses: NHSDigital/eps-workflow-semantic-release/.github/workflows/pr_title_check.yml@b49130ecbac4f0a052642f6417a0ea0555240fd7
38+
uses: NHSDigital/eps-common-workflows/.github/workflows/pr_title_check.yml@551aab5ce8ce8c16c4a38c8114dfe86acc61bb13
3939

4040
dependabot-auto-approve-and-merge:
4141
needs: quality_checks
42-
uses: NHSDigital/eps-workflow-dependabot/.github/workflows/dependabot-auto-approve-and-merge.yml@c78f84e2e6523593bf9b8ac32751c80a206fc73d
42+
uses: NHSDigital/eps-common-workflows/.github/workflows/dependabot-auto-approve-and-merge.yml@551aab5ce8ce8c16c4a38c8114dfe86acc61bb13
4343
secrets:
4444
AUTOMERGE_APP_ID: ${{ secrets.AUTOMERGE_APP_ID }}
4545
AUTOMERGE_PEM: ${{ secrets.AUTOMERGE_PEM }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
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@v5
17+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1818

1919
- name: Get asdf version
2020
id: asdf-version
@@ -26,7 +26,7 @@ jobs:
2626
echo "TAG_FORMAT=$TAG_FORMAT" >> "$GITHUB_OUTPUT"
2727
2828
quality_checks:
29-
uses: NHSDigital/eps-workflow-quality-checks/.github/workflows/quality-checks.yml@ad79b8f5d8dc258c9ec731dc9f6dc47c9f1e7375
29+
uses: NHSDigital/eps-common-workflows/.github/workflows/quality-checks.yml@551aab5ce8ce8c16c4a38c8114dfe86acc61bb13
3030
needs: [get_asdf_version]
3131
with:
3232
asdfVersion: ${{ needs.get_asdf_version.outputs.asdf_version }}
@@ -35,7 +35,7 @@ jobs:
3535

3636
tag_release:
3737
needs: [quality_checks, get_asdf_version]
38-
uses: NHSDigital/eps-workflow-semantic-release/.github/workflows/tag-release.yml@b49130ecbac4f0a052642f6417a0ea0555240fd7
38+
uses: NHSDigital/eps-common-workflows/.github/workflows/tag-release.yml@551aab5ce8ce8c16c4a38c8114dfe86acc61bb13
3939
with:
4040
dry_run: false
4141
asdfVersion: ${{ needs.get_asdf_version.outputs.asdf_version }}

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Run SBOM scripts'
1+
name: "Run SBOM scripts"
22
description: "Scan the current container for an SBOM, and check it for security issues."
33
runs:
44
using: "composite"
@@ -14,7 +14,7 @@ runs:
1414
shell: bash
1515

1616
- name: Upload SBOM artifacts
17-
uses: actions/upload-artifact@v5
17+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
1818
with:
1919
name: sbom-files
20-
path: '**/*sbom-*.json'
20+
path: "**/*sbom-*.json"

0 commit comments

Comments
 (0)