Skip to content

patch release

patch release #1

Workflow file for this run

name: patch release
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *"
env:
GO_VERSION: "1.23"
permissions:
contents: read
jobs:
patch-release:
permissions:
contents: write
pull-requests: write
if: github.ref == 'refs/heads/main' && github.repository == 'cri-o/cri-o'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ env.GO_VERSION }}
- run: make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}