Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
511 B
YAML
27 lines
511 B
YAML
name: k8s api version check
|
|
on:
|
|
pull_request: {}
|
|
push: {}
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
# https://pluto.docs.fairwinds.com/advanced/#display-options
|
|
- name: Download pluto
|
|
uses: FairwindsOps/pluto/github-action@master
|
|
|
|
- name: Check deploy folder
|
|
run: |
|
|
pluto detect-files -d deploy
|
|
|
|
- name: Check example folder
|
|
run: |
|
|
pluto detect-files -d deploy/example
|