Home

Awesome

nuget-update-check-action

CI-Master
nuget new package version check action for GitHub Actions.

Required

This action must execute after setup-dotnet and dotnet restore.

.NET Core version is required 2.2 or higher.

Example

Slack notification example, using 8398a7/action-slack:

name: Check Package

on: 
  schedule:
    - cron: '0 8 * * 5' # every friday AM 8:00
jobs:
  nuget:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - uses: actions/setup-dotnet@v4
      with:
        dotnet-version: '3.0.100'
    - run: dotnet restore
    - uses: MeilCli/nuget-update-check-action@v4
      id: outdated
    - uses: 8398a7/action-slack@v2
      if: steps.outdated.outputs.has_nuget_update != 'false'
      with:
        status: ${{ job.status }}
        text: ${{ steps.outdated.outputs.nuget_update_text }}
        author_name: GitHub Actions
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

You can also pin to a specific release version in the format @v4.x.x

input

output

Contributes

<img src="https://gist.github.com/MeilCli/9be950d02fa29fb64832a61b87b9618f/raw/f7bbb334deca6e35018799d9f21239f3c47b7872/metrics_contributors.svg">

Could you want to contribute?

see Contributing.md

License

<img src="https://gist.github.com/MeilCli/9be950d02fa29fb64832a61b87b9618f/raw/f7bbb334deca6e35018799d9f21239f3c47b7872/metrics_licenses.svg">