You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,8 @@ This action will run either or both of:
15
15
>
16
16
> If the action is re-run against a pull request that has already been commented on, the existing comment will be updated.
17
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.*.*`.
18
+
> `v1.7.0`, `v2.0.0` and `v3.0.0` of this action are functionally identical, except `v1.7.0` defaults to using dotnet `8.*.*`, `v2.0.0` defaults to using dotnet `9.*.*` and `v3.0.0` defaults to using dotnet `10.*.*`.
19
+
> `v3.0.0` also updates action dependencies to latest major versions (npm update check now uses node 20).
19
20
20
21
> [!WARNING]
21
22
> This action is designed to be actioned only within the context of a pull request, no other scenarios are catered for.
@@ -36,7 +37,7 @@ This action will run either or both of:
36
37
37
38
#### `dotnet-version`
38
39
39
-
**Optional** - The version of dotnet to use. Default `9.*.*`.
40
+
**Optional** - The version of dotnet to use. Default `10.*.*`.
40
41
41
42
#### `use-npm-outdated`
42
43
@@ -75,7 +76,7 @@ jobs:
75
76
pull-requests: write
76
77
77
78
steps:
78
-
- uses: trossr32/outdated-packages-action@v2.0.0
79
+
- uses: trossr32/outdated-packages-action@v3.0.0
79
80
with:
80
81
# Whether to run dotnet-outdated. Default is false if not supplied.
81
82
use-dotnet-outdated: true
@@ -87,8 +88,8 @@ jobs:
87
88
# Space delimited string of package names, e.g. "Microsoft.Extensions.Logging Microsoft.Extensions.Logging.Abstractions"
0 commit comments