Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check licenses
uses: fsfe/reuse-action@v5

Expand All @@ -49,7 +49,7 @@ jobs:
# since the dendrite job is optional, actually run all tests to the end instead of failing on first error.
fail-fast: false
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
- uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
with:
Expand All @@ -72,7 +72,7 @@ jobs:
env:
NO_OLM: 1
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
- uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
with:
Expand All @@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-latest-16core
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
- uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
with:
Expand All @@ -118,7 +118,7 @@ jobs:
timeout-minutes: 30
needs: [coverage, coverage_without_olm]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/download-artifact@v8
- name: Merge lcov files
run: |
Expand All @@ -141,7 +141,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
- uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
with:
Expand All @@ -158,7 +158,7 @@ jobs:
env:
NO_OLM: 1
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
- uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
with:
Expand All @@ -172,7 +172,7 @@ jobs:
pub-dev-dry-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
- uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
with:
Expand All @@ -191,7 +191,7 @@ jobs:
run:
working-directory: example
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: subosito/flutter-action@v2
with:
channel: stable
Expand All @@ -207,7 +207,7 @@ jobs:
run:
working-directory: example
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: subosito/flutter-action@v2
with:
channel: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Create release
run: |
Expand Down
Loading