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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 18, 2023
1 parent 4271a09 commit 130c601
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI_CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
environment: ${{ github.event_name == 'pull_request' && 'main' || 'dev' }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Download the table
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
run:
working-directory: app
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: extractions/setup-just@v1
- uses: subosito/flutter-action@v2
with:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
environment: ${{ github.event_name == 'pull_request' && 'main' || 'dev' }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: executable
Expand All @@ -124,7 +124,7 @@ jobs:
needs: [build_and_test_bot, build_flutter_apk]
if: github.event_name == 'pull_request' && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: table
Expand Down

0 comments on commit 130c601

Please sign in to comment.