Bump helm/kind-action from 1.10.0 to 1.11.0 #23
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: use-action | |
on: | |
push: | |
tags-ignore: | |
- '**' | |
branches: | |
- '**' | |
paths-ignore: | |
- '*.md' | |
pull_request: | |
branches: | |
- '**' | |
paths-ignore: | |
- '*.md' | |
jobs: | |
use-action: | |
runs-on: ubuntu-latest | |
steps: | |
# preparing the Kubernetes cluster# (KinD) and installing kubectl | |
- uses: helm/[email protected] | |
with: | |
cluster_name: kind | |
wait: 120s | |
# checking out the project code on the current workspace | |
- uses: actions/checkout@v4 | |
# self loading the action.yaml definitions, making possible to run the action defined on this | |
# project directly | |
- uses: ./ | |
with: | |
pipeline_version: latest | |
feature_flags: '{ "enable-custom-tasks": "true" }' | |
cli_version: latest | |
# assert the changes performed by this action | |
- shell: bash | |
run: | | |
./assert.sh |