Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#2142)
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 Feb 29, 2024
1 parent ba84f5b commit 4b19f82
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-storybook.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build & deploy
runs-on: sfdc-ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Build
runs-on: sfdc-ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/setup-docker-compose
with:
# By writing to the cache here subsequent jobs will get the updated
Expand All @@ -25,7 +25,7 @@ jobs:
needs: [build]
runs-on: sfdc-ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/setup-docker-compose
- name: Lint
run: docker-compose run --no-deps web yarn lint:nofix
Expand All @@ -35,7 +35,7 @@ jobs:
needs: [build]
runs-on: sfdc-ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/setup-docker-compose
- name: Test frontend
run: docker-compose run --no-deps web yarn test:js:coverage
Expand All @@ -51,7 +51,7 @@ jobs:
needs: [build]
runs-on: sfdc-ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/setup-docker-compose
- name: Test backend
# prettier-ignore
Expand All @@ -78,7 +78,7 @@ jobs:
needs: [frontend, backend]
runs-on: sfdc-ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/setup-docker-compose
- name: Download frontend coverage artifacts
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-deps.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
env:
BRANCH_NAME: auto-dependency-upgrades
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# [Optional] Use a separate key to automatically execute checks on the resulting PR
# https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs
Expand Down

0 comments on commit 4b19f82

Please sign in to comment.