Update .talismanrc to set version to 1.0 #207
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Source Composition Analysis Scan | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
security-sca: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: snyk/actions/setup@master | |
- name: Configure Git credentials | |
run: | | |
git config --global url."https://x-access-token:${{ secrets.PKG_TOKEN }}@github.com/".insteadOf "https://github.com/" | |
- name: Resolve Swift package dependencies | |
run: swift package resolve | |
- name: Run Snyk to check for vulnerabilities | |
run: snyk test --all-projects --fail-on=all | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
- name: Cleanup credentials | |
if: always() | |
run: rm -f ~/.gitconfig |