build(deps): Bump debian from stable-20240904-slim to stable-20240926-slim in /tools/build_virtual_environment/ve_base in the docker group across 1 directory #947
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Melos bootstrap" | |
on: | |
workflow_dispatch: | |
inputs: | |
melos_args: | |
description: "Melos arguments" | |
required: false | |
default: '--ignore="at_root_server" --ignore="at_secondary"' | |
pull_request: | |
permissions: | |
contents: read | |
env: | |
default_melos_args: '--ignore="at_root_server" --ignore="at_secondary"' | |
jobs: | |
melos-bootstrap: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 # v2.16.0 | |
with: | |
channel: "stable" | |
- name: flutter pub get | |
run: flutter pub get | |
- name: Do melos bootstrap | |
run: dart run melos bootstrap ${{ github.events.inputs.melos_args || env.default_melos_args }} |