Skip to content

chore(deps): update module google.golang.org/protobuf to v1.33.0 [security] #207

chore(deps): update module google.golang.org/protobuf to v1.33.0 [security]

chore(deps): update module google.golang.org/protobuf to v1.33.0 [security] #207

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
GOLANGCI_LINT_VERSION: v2.5.0
jobs:
lint:
name: Lint
runs-on: ubuntu-arm64-small
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup
uses: ./.github/actions/setup
- name: Lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
args: |
"./..." --timeout=7m
test:
name: Test
runs-on: ubuntu-arm64-small
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup
uses: ./.github/actions/setup
- name: Test
run: mage test
shell: bash