Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 3 to 4 (#3243)
Browse files Browse the repository at this point in the history
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](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 5, 2023
1 parent 17461fc commit 0945aa0
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
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: 22.12.0
PR_NUMBER: ${{ github.event.number }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 50
- name: Add PR base ref
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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- name: Push dev helm chart
run: make push-helm-chart

Expand Down
22 changes: 11 additions & 11 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@v3
- uses: actions/checkout@v4
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@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check if Helm Chart related files changed
Expand All @@ -59,7 +59,7 @@ jobs:
env:
PRETTIER_VERSION: 2.8.4
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- 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.33.2
SHELLCHECK_VERSION: 0.9.0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- 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.4
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
Expand All @@ -151,7 +151,7 @@ jobs:
runs-on: ubuntu-latest
needs: [chart-changed]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
if: needs.chart-changed.outputs.any_changed == 'true'
with:
Expand All @@ -172,7 +172,7 @@ jobs:
- helmlint
- chart-changed
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup go
if: needs.chart-changed.outputs.any_changed == 'true'
uses: actions/setup-go@v4
Expand Down
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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v4
with:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
name: Lint integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.20"
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@v3
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v4
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@v3
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v4
with:
Expand Down

0 comments on commit 0945aa0

Please sign in to comment.