Skip to content

Commit

Permalink
chore: bump versions of workflow actions (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha authored Feb 9, 2024
1 parent 1167da7 commit 3b54b31
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/on-commit-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Test
steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Run tests with coverage
run: melos run test_with_coverage --no-select
- name: Run Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build-android:
Expand All @@ -38,7 +38,7 @@ jobs:
needs: [ test ]
steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
with:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
working-directory: ./example
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Analyze & Test
steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Run tests with coverage
run: melos run test_with_coverage --no-select
- name: Run Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build-android:
Expand All @@ -38,7 +38,7 @@ jobs:
needs: [ test ]
steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
with:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
working-directory: ./example
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
Expand Down

0 comments on commit 3b54b31

Please sign in to comment.