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

build(deps): bump actions/checkout from 3 to 4 #352

Merged
Merged
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/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