This repository has been archived by the owner on Oct 6, 2024. It is now read-only.
build(deps): bump github.com/cloudflare/circl from 1.3.3 to 1.3.7 #26
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: Continuous Delivery | ||
# yamllint disable-line rule:truthy | ||
on: | ||
# yamllint disable-line rule:empty-values | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
permissions: read-all | ||
jobs: | ||
goreleaser: | ||
name: "GO Releaser" | ||
if: >- | ||
startsWith(github.event.head_commit.message, 'bump:') | ||
uses: jlec/github-actions/.github/workflows/reusable-cd-go.yml@main | ||
Check failure on line 20 in .github/workflows/cd.yml GitHub Actions / .github/workflows/cd.ymlInvalid workflow file
|
||
permissions: | ||
contents: write | ||
statuses: write | ||
secrets: | ||
pat: ${{ secrets.PAT_GITHUB_TOKEN }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
tfe_release_token: ${{ secrets.TFE_RELEASE_KEY }} | ||
gpg_release_key: ${{ secrets.GPG_RELEASE_KEY }} | ||
release-and-clean: | ||
name: Release the code & clean up | ||
if: >- | ||
startsWith(github.event.head_commit.message, 'bump:') | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
statuses: write | ||
needs: | ||
- goreleaser | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.ref_name }} | ||
- name: Cleanup action status | ||
uses: ouzi-dev/commit-status-updater@v2 | ||
with: | ||
status: "success" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
name: "GithubActions - ${GITHUB_WORKFLOW}" | ||
ignoreForks: true |