Test test service fix explanation #1
Workflow file for this run
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: "validating available snyk actions" | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| nodeAction: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Validate actions/node | |
| uses: snyk/actions/node@master | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| with: | |
| args: -d | |
| command: help | |
| scalaAction: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Validate actions/scala | |
| uses: snyk/actions/scala@master | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| with: | |
| args: -d | |
| command: help | |
| sbtScalaAction: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Validate actions/sbt1.10.0-scala3.4.2 | |
| uses: snyk/actions/sbt1.10.0-scala3.4.2@master | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| with: | |
| args: -d | |
| command: help |