Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/soundness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ on:
default: true
shell_check_container_image:
type: string
description: "Container image for the shell check job. Defaults to latest Swift Ubuntu image."
default: "swift:6.2-noble"
description: "Container image for the shell check job. Defaults to latest Ubuntu 24.04 Noble image."
default: "ubuntu:noble"
yamllint_check_enabled:
type: boolean
description: "Boolean to enable the YAML lint check job. Defaults to true."
Expand Down Expand Up @@ -293,6 +293,8 @@ jobs:
image: ${{ inputs.shell_check_container_image }}
timeout-minutes: 5
steps:
- name: Install git
run: which git || (apt -q update && apt -yq install git)
- name: Checkout repository
uses: actions/checkout@v4
with:
Expand Down
Loading