[Snyk] Upgrade @google-cloud/storage from 6.4.2 to 7.13.0 #631
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: ci | |
jobs: | |
changeFinder: | |
runs-on: ubuntu-latest | |
outputs: | |
nodePaths: ${{ steps.interrogate.outputs.nodePaths }} | |
goPaths: ${{ steps.interrogate.outputs.goPaths }} | |
bashPaths: ${{ steps.interrogate.outputs.bashPaths }} | |
requiredJobs: ${{ steps.interrogate.outputs.requiredJobs }} | |
steps: | |
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 | |
with: | |
node-version: 18 | |
- id: interrogate | |
run: node ./.github/workflows/interrogate.js | |
env: | |
GITHUB_BASE_REF: ${{github.base_ref}} | |
test: | |
runs-on: ubuntu-latest | |
needs: changeFinder | |
strategy: | |
fail-fast: false | |
matrix: | |
package: ${{fromJson(needs.changeFinder.outputs.nodePaths)}} | |
steps: | |
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | |
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 | |
with: | |
node-version: ${{ (endsWith(matrix.package, '-utils') || matrix.package == 'canary-bot' || matrix.package == 'datastore-lock' || matrix.package == 'object-selector' || matrix.package == 'release-please' ) && 18 || 14 }} | |
- run: echo ./packages/${{ matrix.package }} | |
- run: cd ./packages/${{ matrix.package }} | |
- run: npm ci | |
working-directory: ./packages/${{ matrix.package }} | |
- run: pwd | |
- run: npm test | |
working-directory: ./packages/${{ matrix.package }} | |
- run: npm run lint | |
working-directory: ./packages/${{ matrix.package }} | |
go-test: | |
runs-on: ubuntu-latest | |
needs: changeFinder | |
strategy: | |
fail-fast: false | |
matrix: | |
module: ${{fromJson(needs.changeFinder.outputs.goPaths)}} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3 | |
with: | |
go-version: '^1.16' | |
- name: Install goimports | |
run: go install golang.org/x/tools/cmd/goimports@latest | |
- name: Checkout code | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | |
- name: goimports | |
run: | | |
test -z "$($(go env GOPATH)/bin/goimports -l .)" | |
working-directory: ./${{ matrix.module }} | |
- name: Instructions to fix goimports (if necessary) | |
run: echo Run goimports -w . | |
if: failure() | |
- run: go test ./... | |
working-directory: ./${{ matrix.module }} | |
bash-test: | |
runs-on: ubuntu-latest | |
needs: changeFinder | |
strategy: | |
fail-fast: false | |
matrix: | |
module: ${{fromJson(needs.changeFinder.outputs.bashPaths)}} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | |
- name: bashtest | |
run: | | |
./test.sh | |
working-directory: ./${{ matrix.module }} | |
finale: | |
runs-on: ubuntu-latest | |
needs: changeFinder | |
steps: | |
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | |
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 | |
with: | |
node-version: 18 | |
- run: npm install | |
- run: node ./.github/workflows/finale.js '${{needs.changeFinder.outputs.requiredJobs}}' ${{secrets.GITHUB_TOKEN}} |