feat(#224): compose 이름 변경 #60
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: Deploy Check | |
| # on: | |
| # pull_request: | |
| # branches: [ main ] | |
| # jobs: | |
| # security: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - name: Set up JDK 21 | |
| # uses: actions/setup-java@v4 | |
| # with: | |
| # java-version: '21' | |
| # distribution: 'temurin' | |
| # cache: 'gradle' | |
| # - name: Grant execute permission for gradlew | |
| # run: chmod +x gradlew | |
| # - name: Setup Snyk CLI | |
| # uses: snyk/actions/setup@master | |
| # - name: Run Snyk to check for vulnerabilities | |
| # run: snyk test --severity-threshold=high --sarif-file-output=snyk.sarif | |
| # env: | |
| # SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| # continue-on-error: true | |
| # - name: Upload result to GitHub Code Scanning | |
| # uses: github/codeql-action/upload-sarif@v3 | |
| # with: | |
| # sarif_file: snyk.sarif |