Bump all dependencies to latest available versions #29
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: Verify code and infra | |
| on: | |
| workflow_call: | |
| push: | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
| - name: Install mise | |
| uses: jdx/mise-action@v4 | |
| - name: Verify code and infra | |
| run: mise run verify | |
| env: | |
| AWS_DEFAULT_REGION: us-east-1 | |
| - name: Scan with SonarQube | |
| uses: SonarSource/sonarqube-scan-action@v8 | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |