Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/buildAndDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
image_tag: ${{ steps.generate-tag.outputs.value }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: 'recursive'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/buildAndTestHelm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Helm
uses: azure/setup-helm@v3
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- v1.34.0
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Deploy skaffold
uses: ./.github/actions/deploy-skaffold
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
needs: helm_verify
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Deploy Kubernetes
uses: ./.github/actions/deploy-kubernetes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bumpHelmDeps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: sgibson91/bump-helm-deps-action@main
with:
chart_path: deploy/helm/Chart.yaml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checkPullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Issue number in commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releaseHelm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Deploy Helm chart to GitHub pages
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releaseHelmOperator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Deploy operator and bundle images to dockerhub
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updateImages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand Down
Loading