chore(deps): bump bluefireteam/melos-action from 6085791af7036f6366c9a4b9d55105c0ef9c6388 to be64ed744ff5651ee3e5355041cf2f1495eae87c #396
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
# Copyright 2023 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Check license headers | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check-files-license-headers: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Setup go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed | |
with: | |
go-version: "^1.13.1" | |
# Go is used by addlicense command (addlicense is used in melos run | |
# check-license-header) | |
- name: Run addlicense | |
run: go install github.com/google/addlicense@latest | |
- name: Install Flutter | |
uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 | |
with: | |
flutter-version: "3.22.x" | |
channel: "stable" | |
cache: true | |
- name: Install Melos | |
uses: bluefireteam/melos-action@be64ed744ff5651ee3e5355041cf2f1495eae87c | |
with: | |
# Running `melos bootstrap` is not needed because we use Melos just | |
# for the `check-license-header` script. | |
run-bootstrap: false | |
melos-version: "6.0.0" | |
- name: Check license header | |
run: melos run check-license-header |