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/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
TOWNCRIER_VERSION: 23.11.0
PR_NUMBER: ${{ github.event.number }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 50
- name: Add PR base ref
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
check-dependencies:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: "3.11"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
markdown-link-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: ".markdown_link_check.json"
Expand All @@ -21,7 +21,7 @@ jobs:
push-helm-chart:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Push dev helm chart
run: make push-helm-chart

Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
any_changed: ${{ steps.changed-files.outputs.any_changed }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Check if documentation related files changed
Expand All @@ -33,7 +33,7 @@ jobs:
outputs:
any_changed: ${{ steps.changed-files.outputs.any_changed }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Check if Helm Chart related files changed
Expand All @@ -59,7 +59,7 @@ jobs:
env:
PRETTIER_VERSION: 3.2.5
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: install markdownlint and prettier
if: needs.docs-changed.outputs.any_changed == 'true'
run: npm install -g markdownlint-cli prettier@${PRETTIER_VERSION}
Expand All @@ -73,7 +73,7 @@ jobs:
YQ_VERSION: 4.43.1
SHELLCHECK_VERSION: 0.9.0
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: install shellcheck
run: |
curl --retry 10 --retry-max-time 120 --retry-delay 5 -Lo- https://github.com/koalaman/shellcheck/releases/download/v${{ env.SHELLCHECK_VERSION }}/shellcheck-v${{ env.SHELLCHECK_VERSION }}.linux.x86_64.tar.xz | tar -xJf -
Expand All @@ -92,7 +92,7 @@ jobs:
env:
PRETTIER_VERSION: 2.8.8
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: install yamllint
if: needs.chart-changed.outputs.any_changed == 'true'
run: npm install -g prettier@${PRETTIER_VERSION}
Expand All @@ -104,7 +104,7 @@ jobs:
runs-on: ubuntu-22.04
needs: [chart-changed]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Lint helm chart
if: needs.chart-changed.outputs.any_changed == 'true'
run: |
Expand All @@ -115,7 +115,7 @@ jobs:
runs-on: ubuntu-22.04
needs: [docs-changed]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: ".markdown_link_check.json"
Expand All @@ -127,7 +127,7 @@ jobs:
runs-on: ubuntu-22.04
needs: [docs-changed]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Lint markdown links
if: needs.docs-changed.outputs.any_changed == 'true'
run: |
Expand All @@ -136,7 +136,7 @@ jobs:
check-configuration-keys:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: "3.11"
Expand All @@ -151,7 +151,7 @@ jobs:
runs-on: ubuntu-latest
needs: [chart-changed]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
if: needs.chart-changed.outputs.any_changed == 'true'
with:
Expand All @@ -172,7 +172,7 @@ jobs:
- helmlint
- chart-changed
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup go
if: needs.chart-changed.outputs.any_changed == 'true'
uses: actions/setup-go@v5
Expand Down Expand Up @@ -206,6 +206,6 @@ jobs:
name: Check for unused templates
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check for unused templates
run: make check-unused-templates
2 changes: 1 addition & 1 deletion .github/workflows/release_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
push-helm-chart:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Push helm chart
run: make push-helm-chart
8 changes: 4 additions & 4 deletions .github/workflows/workflow-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
test_names_onlylatest: ${{ steps.set_test_names.outputs.test_names_onlylatest }}
test_names_allversions: ${{ steps.set_test_names.outputs.test_names_allversions }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup go
uses: actions/setup-go@v5
with:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
name: Lint integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: "1.22"
Expand All @@ -66,7 +66,7 @@ jobs:
- ${{ needs.setup-integration-tests.outputs.default_kind_image }}
test_name: ${{ fromJSON(needs.setup-integration-tests.outputs.test_names_onlylatest) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup go
uses: actions/setup-go@v5
with:
Expand All @@ -91,7 +91,7 @@ jobs:
kind_image: ${{ fromJSON(needs.setup-integration-tests.outputs.kind_images) }}
test_name: ${{ fromJSON(needs.setup-integration-tests.outputs.test_names_allversions) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup go
uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-sync-repositories.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
continue-on-error: true
name: ${{ inputs.src_repository }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Login to Docker Hub
uses: docker/login-action@v3.3.0
with:
Expand Down