Skip to content

Commit ac2e362

Browse files
authored
Merge pull request #1 from trossr32/v2.0.0
Update changelog and README for v2.0.0 release; change default dotnet…
2 parents e910b72 + 3741941 commit ac2e362

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# outdated-packages-action
22

3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- Change default dotnet version to 9.0.0
8+
39
## 1.7.0
410

511
### Minor Changes

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ Github action for reporting on outdated dotnet packages in a solution or project
33

44
## Overview
55

6-
This action will run either or both of:
6+
This action will run either or both of:
77

88
- <a href="https://github.com/dotnet-outdated/dotnet-outdated">dotnet-outdated</a> against a supplied dotnet solution or project
99
- <a href="https://github.com/MeilCli/npm-update-check-action">npm-update-check-action</a> against a supplied npm project directory
1010

1111
> [!NOTE]
1212
> The intention of this action is purely to notify of any outdated packages and _not_ to perform any kind of update action.
13-
>
13+
>
1414
> Reports for any outdated packages found are added as a comment to the pull request used to run this action.
15-
>
15+
>
1616
> If the action is re-run against a pull request that has already been commented on, the existing comment will be updated.
17+
>
18+
> `v1.7.0` and `v2.0.0` of this action are functionally identical, except `v1.7.0` defaults to using dotnet `8.*.*` and `v2.0.0` defaults to using dotnet `9.*.*`.
1719
1820
> [!WARNING]
1921
> This action is designed to be actioned only within the context of a pull request, no other scenarios are catered for.
@@ -34,7 +36,7 @@ This action will run either or both of:
3436

3537
#### `dotnet-version`
3638

37-
**Optional** - The version of dotnet to use. Default `8.*.*`.
39+
**Optional** - The version of dotnet to use. Default `9.*.*`.
3840

3941
#### `use-npm-outdated`
4042

@@ -48,7 +50,7 @@ This action will run either or both of:
4850

4951
**Optional** - When true, don't add a success comment to the PR when checks are successful. Default `false`.
5052

51-
## Example github action
53+
## Example github action
5254

5355
outdated.yml
5456
```yaml
@@ -73,7 +75,7 @@ jobs:
7375
pull-requests: write
7476

7577
steps:
76-
- uses: trossr32/outdated-packages-action@v1.7.0
78+
- uses: trossr32/outdated-packages-action@v2.0.0
7779
with:
7880
# Whether to run dotnet-outdated. Default is false if not supplied.
7981
use-dotnet-outdated: true
@@ -85,7 +87,7 @@ jobs:
8587
# Space delimited string of package names, e.g. "Microsoft.Extensions.Logging Microsoft.Extensions.Logging.Abstractions"
8688
dotnet-exclude-packages: ${{ env.EXCLUDE_PACKAGES }}
8789

88-
# The version of dotnet to use. Default is 8.*.*.
90+
# The version of dotnet to use. Default is 9.*.*.
8991
dotnet-version: '9.*.*'
9092

9193
# Whether to run npm-update-check-action. Default is false if not supplied.

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ inputs:
2020
required: false
2121
default: ''
2222

23-
# dotnet version, defaults to 8.*.*
23+
# dotnet version, defaults to 9.*.*
2424
dotnet-version:
2525
description: .NET version to use
2626
required: false
27-
default: '8.*.*'
27+
default: '9.*.*'
2828

2929
# exclude nuget packages from the check
3030
dotnet-exclude-packages:

0 commit comments

Comments
 (0)