Skip to content

Bump golang.org/x/oauth2 from 0.9.0 to 0.10.0 #777

Bump golang.org/x/oauth2 from 0.9.0 to 0.10.0

Bump golang.org/x/oauth2 from 0.9.0 to 0.10.0 #777

Workflow file for this run

name: Go
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2.2.0
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: Lint
run: ./script/lint
- name: Test
run: ./script/test
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: "web/package-lock.json"
- run: npm ci
working-directory: "./web"
- run: npm run build
working-directory: "./web"
- name: Build
run: ./script/build