We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ec6fb commit 36f58dfCopy full SHA for 36f58df
.github/workflows/soundness.yml
@@ -43,6 +43,10 @@ on:
43
type: boolean
44
description: "Boolean to enable the format check job. Defaults to true."
45
default: true
46
+ format_check_container_image:
47
+ type: string
48
+ description: "Container image for the format check job. Defaults to latest Swift Ubuntu image."
49
+ default: "swift:6.0-noble"
50
shell_check_enabled:
51
52
description: "Boolean to enable the shell check job. Defaults to true."
@@ -147,7 +151,7 @@ jobs:
147
151
if: ${{ inputs.format_check_enabled }}
148
152
runs-on: ubuntu-latest
149
153
container:
150
- image: swift:6.0-jammy
154
+ image: ${{ inputs.format_check_container_image }}
155
timeout-minutes: 10
156
steps:
157
- name: Checkout repository
0 commit comments