Skip to content

chore: bump golang.org/x/crypto from 0.43.0 to 0.45.0 (#150) #128

chore: bump golang.org/x/crypto from 0.43.0 to 0.45.0 (#150)

chore: bump golang.org/x/crypto from 0.43.0 to 0.45.0 (#150) #128

Workflow file for this run

name: Release
on:
push:
branches:
- 'main'
permissions:
contents: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Clone repository
uses: actions/checkout@v5
with:
fetch-depth: '0'
- name: Use Go
uses: actions/setup-go@v6
with:
go-version-file: ./go.mod
- name: Run QA
run: make qa
- name: Get next version
id: get_next_version
uses: thenativeweb/get-next-version@2.7.1
- name: Create new version
if: ${{ steps.get_next_version.outputs.hasNextVersion == 'true' }}
run: |
git tag v${{steps.get_next_version.outputs.version}}
git push origin v${{steps.get_next_version.outputs.version}}