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
2 changes: 1 addition & 1 deletion .github/workflows/beta_version_analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Git Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/legacy_version_analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# previous commit via git history). On pull_request events it uses
# the API and the checkout is unused, but is cheap.
- name: "Git Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Detect Path Changes"
uses: dorny/paths-filter@v4
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Git Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/stream_flutter_ai_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
should_run: ${{ github.event_name == 'push' || (steps.filter.outputs.relevant == 'true' && github.event.pull_request.draft != true) }}
steps:
- name: "Git Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Detect Path Changes"
uses: dorny/paths-filter@v4
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Git Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: "Install Flutter"
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
timeout-minutes: 15
steps:
- name: "Git Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: "Install Flutter"
Expand All @@ -109,7 +109,7 @@ jobs:
timeout-minutes: 30
steps:
- name: "Git Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: "Install Flutter"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_goldens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📚 Checkout branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Push with the bot's key rather than the default token so the
# resulting commit retriggers CI.
Expand Down
Loading