Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

chore(deps): bump org.sonarqube from 3.2.0 to 4.4.1.3373 #388

chore(deps): bump org.sonarqube from 3.2.0 to 4.4.1.3373

chore(deps): bump org.sonarqube from 3.2.0 to 4.4.1.3373 #388

Workflow file for this run

#
# Copyright 2020, 2022 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA
#
# 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
#
# http://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: Danger validation
on:
pull_request:
types: [edited, synchronize, reopened, opened]
branches:
- main
- release/*
jobs:
danger-validation:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
# Gems for Fastlane
- name: Cache ruby gems dependencies
uses: actions/cache@v2
env:
keyPath: ${{ runner.os }}-gems
with:
path: ~/.gem
key: ${{ env.keyPath }}-${{ hashFiles('Gemfile.lock') }}
restore-keys: ${{ env.keyPath }}
- name: Install gem dependencies
run: bundle config set path '~/.gem' && bundle install
- name: Run danger check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: bundle exec fastlane run_danger danger_id:"pr_danger" danger_file_path:"pr"