Skip to content

build(deps): bump golang.org/x/oauth2 from 0.24.0 to 0.25.0 #3057

build(deps): bump golang.org/x/oauth2 from 0.24.0 to 0.25.0

build(deps): bump golang.org/x/oauth2 from 0.24.0 to 0.25.0 #3057

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
packages: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: vars
run: make ci--env
- id: meta
uses: docker/[email protected]
with:
flavor: |
latest=true
tags: |
type=raw,value=${{ steps.vars.outputs.sha }}
- uses: docker/[email protected]
with:
tags: |
ghcr.io/beryju/gravity:latest
ghcr.io/beryju/gravity:${{ steps.vars.outputs.sha }}
push: ${{ github.ref == 'refs/heads/main' }}
platforms: linux/amd64,linux/arm64
context: .
build-args: |
BUILD=${{ steps.vars.outputs.build }}
GIT_BUILD_HASH=${{ steps.vars.outputs.sha }}
labels: ${{ steps.meta.outputs.labels }}
build-cli:
name: Build CLI
runs-on: ubuntu-latest
strategy:
matrix:
arch: [arm64, amd64]
os: [darwin, linux]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- run: |
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make bin/gravity-cli
build-web:
name: Build Web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: web/package.json
cache: "npm"
cache-dependency-path: web/package-lock.json
- run: make web-install gen-client-ts web-build
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}