Skip to content

fix(deps): update all non-major dependencies #1251

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #1251

Workflow file for this run

name: CI
on:
push:
tags:
- "v*.*.*"
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
steps:
- uses: actions/checkout@v7
- uses: cerberauth/ci/actions/go-build-test@main
with:
codecov-token: ${{ secrets.CODECOV_TOKEN }}
publish:
needs: build
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
packages: write
pull-requests: write
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: cerberauth/ci/actions/releaser@main
with:
package-name: vulnapi
dockerhub-username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }}
snapcraft-store-credentials: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
chocolatey-api-key: ${{ secrets.CHOCOLATEY_API_KEY }}
aur-key: ${{ secrets.AUR_KEY }}
github-token: ${{ secrets.PAT }}