Skip to content

Commit

Permalink
ci: update GH actions (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrverdant13 committed Aug 14, 2023
1 parent a7179dd commit fde12ce
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check spelling
uses: streetsidesoftware/cspell-action@v2
with:
Expand All @@ -36,7 +36,7 @@ jobs:
needs: min-conditions
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dart
uses: dart-lang/setup-dart@v1
- name: Install melos
Expand All @@ -57,7 +57,7 @@ jobs:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dart
uses: dart-lang/setup-dart@v1
- name: Install melos
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Run tests, merge tests if needed, and check 100% coverage
run: melos run TMC:ci
- name: Update coverage trace file as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: matrix.os == 'ubuntu-latest'
with:
name: filtered.lcov.info
Expand All @@ -82,11 +82,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download coverage trace file artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: filtered.lcov.info
- name: Upload coverage data to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
files: filtered.lcov.info
fail_ci_if_error: true
Expand All @@ -98,7 +98,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dart
uses: dart-lang/setup-dart@v1
- name: Install melos
Expand Down

0 comments on commit fde12ce

Please sign in to comment.