Skip to content
Compare
Choose a tag to compare
@MarcoEidinger MarcoEidinger released this 15 Feb 05:30
· 16 commits to main since this release

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'

#5