New: optional directory
input thanks to @Sherlouk
The GitHub action is looking in the current directory (.
) for the package manifest but you can pass a different path with input parameter directory
. Helpful for Monorepos where the Package.swift
may not be at the root of the project.
- name: Check Swift Package dependencies
id: spm-dep-check
uses: Sherlouk/swift-package-dependencies-check@main
with:
isMutating: true
failWhenOutdated: false
directory: 'Ingest'