Skip to content

chore(deps): update module google.golang.org/grpc to v1.79.1 #1624

chore(deps): update module google.golang.org/grpc to v1.79.1

chore(deps): update module google.golang.org/grpc to v1.79.1 #1624

Workflow file for this run

name: CI
on: push
env:
DATABASE_PASSWORD: passwordless
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Build
uses: ./.github/actions/build
env:
RELEASE_APP_ID: ${{ secrets.RELEASE_APP_ID }}
RELEASE_APP_PEM: ${{ secrets.RELEASE_APP_PEM }}
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Lint
uses: ./.github/actions/lint
env:
RELEASE_APP_ID: ${{ secrets.RELEASE_APP_ID }}
RELEASE_APP_PEM: ${{ secrets.RELEASE_APP_PEM }}
test:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Test
uses: ./.github/actions/test
with:
min_coverage: "80"
env:
DATABASE_PASSWORD: ${{ env.DATABASE_PASSWORD }}
RELEASE_APP_ID: ${{ secrets.RELEASE_APP_ID }}
RELEASE_APP_PEM: ${{ secrets.RELEASE_APP_PEM }}
security:
name: Security
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Security
uses: ./.github/actions/security
env:
RELEASE_APP_ID: ${{ secrets.RELEASE_APP_ID }}
RELEASE_APP_PEM: ${{ secrets.RELEASE_APP_PEM }}
pack:
name: Pack and Upload
runs-on: ubuntu-latest
needs: [build, lint, test, security]
permissions:
contents: read
packages: write
id-token: write
attestations: write
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Pack and Upload
uses: ./.github/actions/pack
env:
RELEASE_APP_ID: ${{ secrets.RELEASE_APP_ID }}
RELEASE_APP_PEM: ${{ secrets.RELEASE_APP_PEM }}