-
Notifications
You must be signed in to change notification settings - Fork 0
Chore: [AEA-0000] - bump dev container version to 1.4.8 #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,11 +2,11 @@ name: pull_request | |
|
|
||
| on: | ||
| pull_request: | ||
| branches: [main] | ||
| branches: [ main ] | ||
| permissions: {} | ||
| jobs: | ||
| get_config_values: | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/get-repo-config.yml@e798d5aee897de6f7dc387dd5623fcd9ba4c8929 | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/get-repo-config.yml@8b259f4f2d2b8ff1345fb0d2f9b9f0fbb9d19845 | ||
| permissions: | ||
| attestations: "read" | ||
| contents: "read" | ||
|
|
@@ -15,7 +15,7 @@ jobs: | |
| verify_published_from_main_image: false | ||
|
|
||
| dependabot-auto-approve-and-merge: | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/dependabot-auto-approve-and-merge.yml@e798d5aee897de6f7dc387dd5623fcd9ba4c8929 | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/dependabot-auto-approve-and-merge.yml@8b259f4f2d2b8ff1345fb0d2f9b9f0fbb9d19845 | ||
| permissions: | ||
| contents: "write" | ||
| pull-requests: "write" | ||
|
|
@@ -24,26 +24,29 @@ jobs: | |
| AUTOMERGE_PEM: ${{ secrets.AUTOMERGE_PEM }} | ||
|
|
||
| quality_checks: | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/quality-checks-devcontainer.yml@68c2dea999875055ecbfdf055d8391e6e8b8ce2f | ||
| needs: [get_config_values] | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/quality-checks-devcontainer.yml@8b259f4f2d2b8ff1345fb0d2f9b9f0fbb9d19845 | ||
| needs: [ get_config_values ] | ||
| permissions: | ||
|
Comment on lines
26
to
29
|
||
| contents: "read" | ||
| packages: "read" | ||
| id-token: "write" | ||
| with: | ||
| pinned_image: ${{ needs.get_config_values.outputs.pinned_image }} | ||
| secrets: | ||
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
|
|
||
| pr_title_format_check: | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/pr_title_check.yml@e798d5aee897de6f7dc387dd5623fcd9ba4c8929 | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/pr_title_check.yml@8b259f4f2d2b8ff1345fb0d2f9b9f0fbb9d19845 | ||
| permissions: | ||
| pull-requests: "write" | ||
|
|
||
| tag_release: | ||
| needs: [get_config_values] | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/tag-release-devcontainer.yml@68c2dea999875055ecbfdf055d8391e6e8b8ce2f | ||
| needs: [ get_config_values ] | ||
| uses: NHSDigital/eps-common-workflows/.github/workflows/tag-release-devcontainer.yml@8b259f4f2d2b8ff1345fb0d2f9b9f0fbb9d19845 | ||
| permissions: | ||
| id-token: "write" | ||
| contents: "write" | ||
| packages: "write" | ||
| with: | ||
| dry_run: true | ||
| pinned_image: ${{ needs.get_config_values.outputs.pinned_image }} | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only the
quality-checks-devcontainerreusable workflow SHA was bumped here, but thetag_releasejob still points at the previoustag-release-devcontainer.yml@68c2.... If the devcontainer version bump to 1.4.8 is meant to apply end-to-end, consider bumping thetag-release-devcontainerSHA as well (or clarify why tagging should remain on the older version).