fix: update to go 1.22.2
due to vulnerabilities in go std library
#4
Workflow file for this run
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: Release | |
# with pontos | |
on: | |
pull_request: | |
types: [closed] | |
workflow_dispatch: | |
inputs: | |
release-type: | |
type: choice | |
description: What kind of release do you want to do (pontos --release-type argument)? | |
options: | |
- patch | |
- minor | |
- major | |
release-version: | |
type: string | |
description: Set an explicit version, that will overwrite release-type. Fails if version is not compliant. | |
jobs: | |
release: | |
name: csaf_distribution | |
uses: greenbone/workflows/.github/workflows/release-3rd-gen.yml@main | |
with: | |
release-type: ${{ inputs.release-type }} | |
release-version: ${{ inputs.release-version }} | |
secrets: inherit |