Skip to content

Commit

Permalink
ci(deps): bump actions/checkout from 3 to 4 (#71)
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>
Co-authored-by: David Schach <636977+dschach@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and dschach authored Sep 9, 2023
1 parent 6aaf258 commit 2fb0b6d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
# Checkout the source code
- name: "Checkout source code"
uses: actions/checkout@v3
uses: actions/checkout@v4

# Install Volta to enforce proper node and package manager versions
- name: "Install Volta"
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
steps:
# Checkout the source code
- name: "Checkout source code"
uses: actions/checkout@v3
uses: actions/checkout@v4

# Install PMD
- name: "Install PMD"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout source code"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Dependencies
run: npm install @salesforce/cli --global
- name: Populate auth file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
pmd-code-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# Checkout the source code
- name: "Checkout source code"
uses: actions/checkout@v3
uses: actions/checkout@v4

# Install Volta to enforce proper node and package manager versions
- name: "Install Volta"
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
steps:
# Checkout the source code
- name: "Checkout source code"
uses: actions/checkout@v3
uses: actions/checkout@v4

# Install Salesforce CLI
- name: "Install Salesforce CLI"
Expand Down

0 comments on commit 2fb0b6d

Please sign in to comment.