Skip to content

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.118.0 #3073

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.118.0

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.118.0 #3073

Workflow file for this run

name: Compile
on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- main
release:
types:
- published
permissions:
contents: write
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
show-progress: false
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: go.ver
- name: Set up QEMU
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
- name: Docker Login
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Test releasing binaries
if: github.event_name == 'pull_request'
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
with:
args: release --clean --skip=validate --skip=sign --skip=sbom --skip=publish --snapshot
- name: Extract release changelog
if: startsWith(github.ref, 'refs/tags/')
id: changelog
uses: sean0x42/markdown-extract@4178293dd16a52514b6cb2c01f4d309d264b2736 # v2
with:
file: docs/changelog.md
pattern: "${{ github.ref_name }}"
no-print-matched-heading: true
- name: Write changelog
if: startsWith(github.ref, 'refs/tags/')
run: |
mkdir .tmp
exec 3<<'HERE'
${{ steps.changelog.outputs.markdown }}
HERE
cat /dev/fd/3 | tee .tmp/changelog.txt
- name: Release binaries
if: startsWith(github.ref, 'refs/tags/')
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
with:
args: release --clean --release-notes=.tmp/changelog.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}