target supported version #50
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: "target supported version" | |
on: | |
# Triggers the workflow on push or pull request events but only for the default branch | |
schedule: | |
- cron: "0 0 1 * *" | |
workflow_dispatch: | |
inputs: | |
reason: | |
description: "The reason for running the workflow" | |
required: true | |
default: "Manual run" | |
support: | |
description: "The support level to target (STS, LTS, or Preview)." | |
required: true | |
default: "STS" | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
permissions: | |
contents: read | |
jobs: | |
# This workflow contains a single job called "build" | |
version-sweep: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Start the .NET version updater action | |
# A composite of the .NET Version Sweeper and the .NET Upgrade Assistant | |
- name: Harden Runner | |
uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0 | |
with: | |
egress-policy: audit | |
- name: .NET version updater | |
id: dotnet-version-updater | |
uses: dotnet/docs-tools/actions/dotnet-version-updater@5e8bcc78465d45a7544bba56509a1a69922b6a5a # main | |
with: | |
support: ${{ github.event.inputs.support }} | |
token: ${{ secrets.GITHUB_TOKEN }} |