Skip to content

πŸ”„ Update to 16.6.3 #154

πŸ”„ Update to 16.6.3

πŸ”„ Update to 16.6.3 #154

Workflow file for this run

name: πŸ”„ Update Nitro CLI Version
on:
workflow_dispatch:
inputs:
version:
description: Version to update to
required: true
type: string
is_stable:
description: Whether this version is a stable (X.Y.Z) release.
required: true
type: boolean
is_active_major:
description: Whether this version targets the top lane (version.major >= highest stable major).
required: true
type: boolean
run-name: "πŸ”„ Update to ${{ inputs.version }}"
permissions:
contents: write
jobs:
update:
uses: ChilliCream/nitro-github-actions/.github/workflows/update-cli-version.yaml@ab1096f1a097cd7c52aa4f04cde527ca8a265441
with:
version: ${{ inputs.version }}
is_stable: ${{ inputs.is_stable }}
is_active_major: ${{ inputs.is_active_major }}