chore(deps): update reviewdog/action-actionlint digest to a5524e1 #12608
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: Bosh Templates Test | |
| concurrency: | |
| group: "${{ github.workflow }}/${{ github.ref }}" | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| templates: | |
| name: Bosh Templates Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Install devbox | |
| uses: jetify-com/devbox-install-action@734088efddca47cf44ff8a09289c6d0e51b73218 # v0.12.0 | |
| with: | |
| enable-cache: 'true' | |
| - name: Make devbox shellenv available | |
| run: | | |
| eval "$(devbox shellenv)" | |
| printenv >> "$GITHUB_ENV" | |
| - name: Run Tests | |
| run: | | |
| set -e | |
| make spec-test |