chore(deps): bump helm/chart-releaser-action from a0d2dc62c5e491af8ef6ba64a2e02bcf3fb33aa1 to cae68fefc6b5f367a0275617c9f83181ba54714f #3358
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: Run Test | |
| on: | |
| pull_request: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| branches: | |
| - "main" | |
| schedule: | |
| - cron: '0 4 * * 3' # Every Wednesday at 4:00 AM | |
| # https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token | |
| permissions: | |
| contents: read | |
| jobs: | |
| event_file: | |
| name: "Store event file" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Upload | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: Event File | |
| path: ${{ github.event_path }} | |
| unit-tests: | |
| if: | | |
| !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' | |
| uses: ./.github/workflows/unit-tests.yaml | |
| name: Unit tests | |
| security-tests: | |
| name: Security tests | |
| needs: [unit-tests] | |
| if: needs.unit-tests.result == 'success' | |
| uses: ./.github/workflows/security-tests.yaml | |
| secrets: inherit | |
| integration-tests: | |
| name: Integration tests | |
| needs: [unit-tests] | |
| if: needs.unit-tests.result == 'success' | |
| uses: ./.github/workflows/integration-tests.yaml | |
| with: | |
| cnspecImageTag: "" | |
| secrets: inherit | |
| helm-tests: | |
| name: Helm tests | |
| needs: [unit-tests] | |
| if: needs.unit-tests.result == 'success' | |
| uses: ./.github/workflows/helm-tests.yaml | |
| permissions: | |
| contents: read | |
| actions: read | |
| checks: write | |
| statuses: write | |
| pull-requests: write | |
| secrets: | |
| MONDOO_TEST_ORG_TOKEN: ${{ secrets.MONDOO_TEST_ORG_TOKEN }} |