Skip to content

Commit

Permalink
build(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 5, 2023
1 parent 13236f9 commit bc65dbe
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
steps:
# Checks-out PeekabooAV-Installer under $GITHUB_WORKSPACE
- name: Check out PeekabooAV-Installer
uses: actions/checkout@v3
uses: actions/checkout@v4

# put PeekabooAV below that as expected by the installer
- name: Check out PeekabooAV
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: scVENUS/PeekabooAV
path: PeekabooAV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/container-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
steps:
# Checks-out PeekabooAV-Installer under $GITHUB_WORKSPACE
- name: Checkout PeekabooAV-Installer
uses: actions/checkout@v3
uses: actions/checkout@v4

# put PeekabooAV below that as expected by the installer
- name: Checkout PeekabooAV
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: scVENUS/PeekabooAV
path: PeekabooAV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-container-images-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# get all history, branches and tags so we can build a list of refs
# to build from
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
steps:
# required for access to the local publish action
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# we cannot use a reuseable workflow here because it's not supported in
# conjunction with matrix strategy. But a custom action can do exactly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-container-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
# required for access to the local publish action
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/container-image-publish
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-helm-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

0 comments on commit bc65dbe

Please sign in to comment.