fix(deps): update module buf.build/gen/go/grpc/grpc/protocolbuffers/go to v1.36.1-20241224201141-c591cbb6df8a.1 #85
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
name: Go | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
pull_request: | |
branches: | |
- main | |
permissions: | |
checks: write | |
contents: write | |
packages: write | |
pull-requests: write | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
fetch-tags: "true" | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache-dependency-path: go.sum | |
check-latest: true | |
- name: Init go | |
run: | | |
go mod download | |
go mod download -modfile tools/go.mod | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
env: | |
GOPROXY: direct | |
- id: govulncheck | |
uses: golang/govulncheck-action@v1 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
with: | |
go-version-file: go.mod | |
go-package: ./... | |
- name: Test | |
run: | | |
go run -modfile ./tools/go.mod gotest.tools/gotestsum --format pkgname --junitfile out/junit.xml -- -race -shuffle=on -covermode=atomic ./... | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() | |
with: | |
name: git-age@${{ matrix.os }} | |
path: out/junit.xml | |
reporter: java-junit | |
deploy: | |
environment: github | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
fetch-tags: "true" | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache-dependency-path: go.sum | |
check-latest: true | |
- name: Init go | |
run: | | |
go mod download | |
go mod download -modfile tools/go.mod | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
- run: gem install asciidoctor | |
- name: Setup Syft | |
run: curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin | |
- name: Prepare GPG setup | |
run: | | |
mkdir -p $GITHUB_WORKSPACE/.gnupg | |
echo "${{ secrets.GPG_SIGNING_KEY }}" | base64 -d > $GITHUB_WORKSPACE/.gnupg/gpg.key | |
- name: Snapshot release | |
uses: goreleaser/goreleaser-action@v6 | |
if: ${{ !startsWith(github.ref, 'refs/tags/v') }} | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean --snapshot | |
env: | |
NFPM_PASSPHRASE: ${{ secrets.NFPM_PASSPHRASE }} | |
- name: Release | |
uses: goreleaser/goreleaser-action@v6 | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_TAP_PAT: ${{ secrets.GH_TAP_PAT }} | |
GH_WINGET_PAT: ${{ secrets.GH_WINGET_PAT }} | |
GH_SCOOP_PAT: ${{ secrets.GH_SCOOP_PAT }} | |
AUR_KEY: ${{ secrets.AUR_SSH_KEY }} | |
NFPM_PASSPHRASE: ${{ secrets.NFPM_PASSPHRASE }} | |
- name: Upload RPM packages | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
run: | | |
for rpm in dist/*.rpm; do | |
curl --user prskr:${{ secrets.UPLOAD_RPM_SECRET }} \ | |
--upload-file "${rpm}" \ | |
https://code.icb4dc0.de/api/packages/prskr/rpm/upload | |
done | |
- name: Upload DEB packages | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
run: | | |
for deb in dist/*.deb; do | |
curl --user prskr:${{ secrets.UPLOAD_DEB_SECRET }} \ | |
--upload-file "${deb}" \ | |
https://code.icb4dc0.de/api/packages/prskr/debian/pool/bookworm/main/upload | |
done |