Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4 (#352)
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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 5, 2023
1 parent 49d8eb7 commit 166b443
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/olm-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
environment: quay
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-operator-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
environment: quay
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
commit-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v5
Expand All @@ -15,14 +15,14 @@ jobs:
runs-on: ubuntu-latest
name: Github Actions yaml linter
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1

lint:
runs-on: ubuntu-latest
name: Run all lints
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Import common environment variables
run: cat ".github/env" >> $GITHUB_ENV
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
name: Generate and format
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Import common environment variables
run: cat ".github/env" >> $GITHUB_ENV
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
name: Validate tools cache
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Import common environment variables
run: cat ".github/env" >> $GITHUB_ENV
Expand All @@ -90,7 +90,7 @@ jobs:
build-bundle-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Import common environment variables
run: cat ".github/env" >> $GITHUB_ENV
Expand All @@ -111,7 +111,7 @@ jobs:
e2e-tests-olm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Import common environment variables
run: cat ".github/env" >> $GITHUB_ENV
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
e2e-tests-olm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Import common environment variables
run: cat ".github/env" >> $GITHUB_ENV
Expand All @@ -25,7 +25,7 @@ jobs:
needs:
- e2e-tests-olm
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
if: "startsWith(github.event.head_commit.message, 'chore(release):')"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.REPOSITORY_PUSH_TOKEN }}
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
environment: quay
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.REPOSITORY_PUSH_TOKEN }}
Expand Down

0 comments on commit 166b443

Please sign in to comment.