Bump check-spelling/check-spelling from 0.0.22 to 0.0.23 #277
Workflow file for this run
This file contains 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: K8s Manifest Scanning | |
on: | |
pull_request: | |
push: | |
paths: | |
- "action.yaml" | |
- "k8s-manifest/*" | |
- ".github/test_files/**" | |
branches: | |
- "main" | |
tags: ["v*.*.*"] | |
jobs: | |
k8s-manifest-tests: | |
runs-on: ubuntu-latest | |
name: Test k8s manifest scanning | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Scan k8s manifest | |
uses: ./k8s-manifest | |
env: | |
MONDOO_CONFIG_BASE64: ${{ secrets.MONDOO_SERVICE_ACCOUNT }} | |
with: | |
path: ./.github/test_files/k8s-manifest.yaml | |
- name: Scan k8s directory | |
uses: ./k8s-manifest | |
env: | |
MONDOO_CONFIG_BASE64: ${{ secrets.MONDOO_SERVICE_ACCOUNT }} | |
with: | |
path: ./.github/test_files/ |