Skip to content

Commit

Permalink
chore(deps): Bump the actions group with 3 updates
Browse files Browse the repository at this point in the history
Bumps the actions group with 3 updates: [codecov/codecov-action](https://github.com/codecov/codecov-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `codecov/codecov-action` from 3 to 4
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v3...v4)

Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

Updates `actions/download-artifact` from 3 to 4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and he0119 committed Feb 6, 2024
1 parent 4825c7e commit c89271a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
flutter test --coverage
python lcov_cobertura.py coverage/lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4

android:
name: Android
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
env:
ENVIRONMENT: ${{ needs.test.outputs.environment }}
- name: Upload split-per-abi apks
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: github.event_name != 'pull_request'
with:
name: android
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
env:
ENVIRONMENT: ${{ needs.test.outputs.environment }}
- name: Upload web version
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: github.event_name != 'pull_request'
with:
name: web
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
env:
ENVIRONMENT: ${{ needs.test.outputs.environment }}
- name: Upload windows version
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: github.event_name != 'pull_request'
with:
name: windows
Expand All @@ -177,7 +177,7 @@ jobs:
if: github.event_name != 'pull_request'
steps:
- name: Download web files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: web
- name: Copy file to server
Expand All @@ -200,7 +200,7 @@ jobs:
if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
steps:
- name: Download web files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: web
- name: Copy file to server
Expand All @@ -220,7 +220,7 @@ jobs:
if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: Compress files
run: |
tar -czvf web.tar.gz web
Expand Down

0 comments on commit c89271a

Please sign in to comment.