{"id":14986013,"url":"https://github.com/meilcli/nuget-update-check-action","last_synced_at":"2026-03-01T11:05:34.582Z","repository":{"id":36988924,"uuid":"211518133","full_name":"MeilCli/nuget-update-check-action","owner":"MeilCli","description":"nuget new package version check action for GitHub Actions.","archived":false,"fork":false,"pushed_at":"2025-04-10T22:12:49.000Z","size":4917,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-10T23:23:11.991Z","etag":null,"topics":["actions","github-actions","nuget","nuget-package"],"latest_commit_sha":null,"homepage":"https://github.com/MeilCli/actions","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MeilCli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"MeilCli"}},"created_at":"2019-09-28T15:06:17.000Z","updated_at":"2025-04-10T22:12:51.000Z","dependencies_parsed_at":"2024-04-15T10:28:39.719Z","dependency_job_id":"01b53c31-ea04-4f09-b194-4e48e1ade3dd","html_url":"https://github.com/MeilCli/nuget-update-check-action","commit_stats":{"total_commits":495,"total_committers":5,"mean_commits":99.0,"dds":"0.15353535353535352","last_synced_commit":"7f3a7889f0c0b16b77f1b556d3ebba8bc53f56b4"},"previous_names":[],"tags_count":104,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeilCli%2Fnuget-update-check-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeilCli%2Fnuget-update-check-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeilCli%2Fnuget-update-check-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeilCli%2Fnuget-update-check-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MeilCli","download_url":"https://codeload.github.com/MeilCli/nuget-update-check-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248482923,"owners_count":21111401,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","github-actions","nuget","nuget-package"],"created_at":"2024-09-24T14:12:08.168Z","updated_at":"2026-03-01T11:05:34.536Z","avatar_url":"https://github.com/MeilCli.png","language":"TypeScript","funding_links":["https://github.com/sponsors/MeilCli"],"categories":[],"sub_categories":[],"readme":"# nuget-update-check-action\n[![CI-Master](https://github.com/MeilCli/nuget-update-check-action/actions/workflows/ci-master.yml/badge.svg)](https://github.com/MeilCli/nuget-update-check-action/actions/workflows/ci-master.yml)  \nnuget new package version check action for GitHub Actions.\n\n## Required\nThis action must execute after [setup-dotnet](https://github.com/actions/setup-dotnet) and `dotnet restore`.\n\n.NET Core version is required 2.2 or higher.\n\n## Example\nSlack notification example, using [8398a7/action-slack](https://github.com/8398a7/action-slack):\n\n```yaml\nname: Check Package\n\non: \n  schedule:\n    - cron: '0 8 * * 5' # every friday AM 8:00\njobs:\n  nuget:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v4\n    - uses: actions/setup-dotnet@v4\n      with:\n        dotnet-version: '3.0.100'\n    - run: dotnet restore\n    - uses: MeilCli/nuget-update-check-action@v4\n      id: outdated\n    - uses: 8398a7/action-slack@v2\n      if: steps.outdated.outputs.has_nuget_update != 'false'\n      with:\n        status: ${{ job.status }}\n        text: ${{ steps.outdated.outputs.nuget_update_text }}\n        author_name: GitHub Actions\n      env:\n        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}\n```\nYou can also pin to a [specific release](https://github.com/MeilCli/nuget-update-check-action/releases) version in the format `@v4.x.x`\n\n## input\n- `project_or_solution_files`\n  - optional\n  - target project or solution files\n  - if multiple files, write multiline\n- `config`\n  - optional\n  - The NuGet sources to use when searching for newer packages\n- `source`\n  - optional\n  - The NuGet sources to use when searching for newer packages\n- `frameworks`\n  - Displays only the packages applicable for the specified target framework\n  - if multiple files, write multiline\n- `highest_minor`\n  - optional\n  - Considers only the packages with a matching major version number when searching for newer packages\n  - value: `true` or `false`, default: `false`\n- `highest_patch`\n  - optional\n  - Considers only the packages with a matching major and minor version numbers when searching for newer packages\n  - value: `true` or `false`, default: `false`\n- `include_prerelease`\n  - optional\n  - Considers packages with prerelease versions when searching for newer packages\n  - value: `true` or `false`, default: `false`\n\n## output\n- `has_nuget_update`\n  - has new package version information\n  - value: `true` or `false`\n- `nuget_update_text`\n  - new package version information text\n- `nuget_update_json`\n  - new package version information json\n\n## Contributes\n[\u003cimg src=\"https://gist.github.com/MeilCli/9be950d02fa29fb64832a61b87b9618f/raw/f7bbb334deca6e35018799d9f21239f3c47b7872/metrics_contributors.svg\"\u003e](https://github.com/MeilCli/nuget-update-check-action/graphs/contributors)\n\n### Could you want to contribute?\nsee [Contributing.md](./.github/CONTRIBUTING.md)\n\n## License\n[\u003cimg src=\"https://gist.github.com/MeilCli/9be950d02fa29fb64832a61b87b9618f/raw/f7bbb334deca6e35018799d9f21239f3c47b7872/metrics_licenses.svg\"\u003e](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeilcli%2Fnuget-update-check-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeilcli%2Fnuget-update-check-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeilcli%2Fnuget-update-check-action/lists"}