fix(deps): update dependency google/cloud-storage-control to v1.6.1 #2878
Workflow file for this run
This file contains hidden or 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: Lint | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| styles: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| - name: Run Script | |
| run: testing/run_cs_check.sh | |
| staticanalysis: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| - name: Get changed files | |
| id: changedFiles | |
| uses: tj-actions/changed-files@v46 | |
| - name: Run Script | |
| run: | | |
| composer install -d testing/ | |
| git fetch --no-tags --prune --depth=5 origin main | |
| bash testing/run_staticanalysis_check.sh | |
| env: | |
| FILES_CHANGED: ${{ steps.changedFiles.outputs.all_changed_files }} | |
| PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} |