Skip to content
Open
Show file tree
Hide file tree
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: 3 additions & 3 deletions .github/workflows/pr-validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ jobs:
# Pin to main to prevent accidental injection of malicious code
lint:
name: Lint
uses: mglants/containers/.github/workflows/workflow_call-lint.yaml@main
uses: mglants/containers/.github/workflows/workflow_call-lint.yaml@2bcc5b0eed6dd9132070275c45d0b3e04fccc17b # main

get-changed-images:
name: Get changed images
uses: mglants/containers/.github/workflows/workflow_call-get_changed_images.yaml@main
uses: mglants/containers/.github/workflows/workflow_call-get_changed_images.yaml@2bcc5b0eed6dd9132070275c45d0b3e04fccc17b # main

build-images:
name: Build images
needs:
- lint
- get-changed-images
if: ${{ needs.get-changed-images.outputs.addedOrModified == 'true' }}
uses: mglants/containers/.github/workflows/workflow_call-build_images.yaml@main
uses: mglants/containers/.github/workflows/workflow_call-build_images.yaml@2bcc5b0eed6dd9132070275c45d0b3e04fccc17b # main
permissions:
contents: read
packages: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow_call-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: "Yamllint"
if: ${{ steps.filter.outputs.yaml == 'true' }}
uses: karancode/yamllint-github-action@master
uses: karancode/yamllint-github-action@4052d365f09b8d34eb552c363d1141fd60e2aeb2 # master
with:
yamllint_file_or_dir: "${{ steps.filter.outputs.yaml_files }}"
yamllint_strict: false
Expand Down
Loading