Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4 (#1599)
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] committed Oct 12, 2023
1 parent 7720b30 commit 2ab6530
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: "!startsWith(github.event.head_commit.message, 'chore(release): v')"
steps:
- name: Checkout aries-framework-javascript
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# pulls all commits (needed for lerna to correctly version)
fetch-depth: 0
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
if: "startsWith(github.event.head_commit.message, 'chore(release): v')"
steps:
- name: Checkout aries-framework-javascript
uses: actions/checkout@v3
uses: actions/checkout@v4

# setup dependencies
- name: Setup Libindy
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
name: Validate
steps:
- name: Checkout aries-framework-javascript
uses: actions/checkout@v3
uses: actions/checkout@v4

# setup dependencies
- name: Setup Libindy
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

steps:
- name: Checkout aries-framework-javascript
uses: actions/checkout@v3
uses: actions/checkout@v4

# setup dependencies

Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
if: github.ref == 'refs/heads/main' && github.event_name == 'workflow_dispatch'
steps:
- name: Checkout aries-framework-javascript
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# pulls all commits (needed for lerna to correctly version)
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/repolinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container: ghcr.io/todogroup/repolinter:v0.10.1
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lint Repo
run: bundle exec /app/bin/repolinter.js --rulesetUrl https://raw.githubusercontent.com/hyperledger-labs/hyperledger-community-management-tools/master/repo_structure/repolint.json

0 comments on commit 2ab6530

Please sign in to comment.