Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create upgrade-kubebuilder-version-for-password-operator.yml #742

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: upgrade-kubebuilder-version-for-password-operator

on:
pull_request:
workflow_dispatch:

jobs:
upgrade-kubebuilder-version:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
with:
repository: nakamasato/password-operator
ref: update-kubebuilder-version-to-3.12.0

- name: setup python
uses: actions/setup-python@v3

- name: install pre-commit
run: pip install pre-commit

- name: start kind cluster
run: kind create cluster

- name: set git
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"

- name: upgrade version
run: yes | ./.upgrade-version.sh v3.12.0
Loading