Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 3 to 4
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>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent cb38604 commit 72defa1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
steps:
- name: Dump context
uses: crazy-max/ghaction-dump-context@v2.0.0
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ needs.test-skip-check.outputs.no-skip }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ needs.test-skip-check.outputs.no-skip }}
with:
repository: infinyon/fluvio
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/htmltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Checkout code
if: ${{ needs.test-skip-check.outputs.no-skip }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Hugo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
run: npm install --global capture-website-cli

# Checkout and build files of a base ref.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.sha }}
path: current_repo
# Checkout and build files of a head ref.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
clean: false # Prevent removing files in 'path/to/base' folder.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/skip-test-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
no-skip: ${{ ! steps.outputs.skip_label_check.result }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Dump context
uses: crazy-max/ghaction-dump-context@v2.0.0

- name: Checkout code for push
if: github.event_name == 'push' && github.ref == 'refs/heads/staging'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get PR Number from event
if: github.event_name == 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-connector-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Fluvio
run: |
curl -fsS https://hub.infinyon.cloud/install/install.sh | bash
Expand Down

0 comments on commit 72defa1

Please sign in to comment.