Skip to content
Open
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/all_plugins.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: all_plugins

Check warning on line 1 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:1: overly broad permissions: default permissions used due to no permissions: block

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -19,7 +19,7 @@
- '**.md'

jobs:
analyze:

Check warning on line 22 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:22: overly broad permissions: default permissions used due to no permissions: block
timeout-minutes: 50
runs-on: ubuntu-latest
steps:
Expand All @@ -42,7 +42,7 @@
# Separated from "analyse" action as pubspec_override file is not being taken into account when running `flutter pub publish --dry-run`
# This will fail on CI until this is fixed: https://github.com/invertase/melos/issues/467
# You need to switch to Flutter 3.3.0, and run this test manually to check it works and update PR to confirm its success
pub_dry_run:

Check warning on line 45 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:45: overly broad permissions: default permissions used due to no permissions: block
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
Expand All @@ -61,7 +61,7 @@
melos exec -c 1 --no-private --ignore="*example*" -- \
dart pub publish --dry-run

pub_get_check:

Check warning on line 64 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:64: overly broad permissions: default permissions used due to no permissions: block
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
Expand All @@ -80,7 +80,7 @@
melos exec -c 1 --scope="*example*" -- \
"flutter pub get"

format:

Check warning on line 83 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:83: overly broad permissions: default permissions used due to no permissions: block
# switch back to ubuntu-latest when swiftformat is working again
runs-on: macos-latest
timeout-minutes: 40
Expand All @@ -97,7 +97,7 @@
- uses: bluefireteam/melos-action@705015c3d2bc4ab94201ac24accb2bbe070cf533
with:
melos-version: '5.3.0'
- uses: Homebrew/actions/setup-homebrew@master

Check failure on line 100 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 100 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

all_plugins.yaml:100: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: 'Install Tools'
run: |
alias python=python3
Expand All @@ -121,7 +121,7 @@
rm -rf build
find packages -type d -name build -prune -exec rm -rf {} +

build_examples_dart:

Check warning on line 124 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:124: overly broad permissions: default permissions used due to no permissions: block
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
Expand All @@ -140,7 +140,7 @@
run: |
melos exec -c 1 --scope="*example*" --dir-exists="web" -- \
"flutter build web"
swift-integration:

Check warning on line 143 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:143: overly broad permissions: default permissions used due to no permissions: block
runs-on: macos-15
timeout-minutes: 45
env:
Expand Down Expand Up @@ -171,7 +171,7 @@
- name: 'Build Apps with Swift Package Manager'
run: dart ./.github/workflows/scripts/swift-integration.dart $FLUTTER_DEPENDENCIES

test:

Check warning on line 174 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:174: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand All @@ -190,12 +190,12 @@
- name: 'Flutter Test - Web'
run: melos run test:web --no-select

check-files-license-headers:

Check warning on line 193 in .github/workflows/all_plugins.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

all_plugins.yaml:193: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16
with:
go-version: '^1.13.1'
# Go is used by addlicense command (addlicense is used in melos run
Expand Down
Loading