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
10 changes: 5 additions & 5 deletions .github/workflows/code_health.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5.0.0
- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand All @@ -34,7 +34,7 @@ jobs:
pub_dry_run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5.0.0
- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand All @@ -50,7 +50,7 @@ jobs:
pub_get_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5.0.0
- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand All @@ -67,7 +67,7 @@ jobs:
# switch back to ubuntu-latest when swiftformat is working again
runs-on: macos-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5.0.0
- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5.0.0
- uses: actions/setup-go@v5
with:
go-version: "^1.13.1"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
name: Install Node.js
with:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
runs-on: macos-15
timeout-minutes: 45
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
name: Install Node.js
with:
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
runs-on: macos-15
timeout-minutes: 45
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
name: Install Node.js
with:
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
with:
channel: 'stable'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ossf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v3.1.0
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v3.1.0
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
packages: ${{ steps.filter.outputs.changed_packages }}
has_changes: ${{ steps.filter.outputs.changed_packages != '[]' }}
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5.0.0
- uses: ./.github/actions/changes
id: filter

Expand All @@ -44,7 +44,7 @@ jobs:
target: ["html", "io"]

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5.0.0
- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand Down
Loading