-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
40 lines (40 loc) · 1.12 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: 'nuget update'
description: 'update project NuGet packages'
author: 'Bchir'
runs:
using: 'node12'
main: 'lib/main.js'
branding:
icon: arrow-up
color: blue
inputs:
searchFor:
description: |
Select what packages to update
Possible values : 'deprecated' , 'outdated'
required: true
versionToSelect:
description: |
Considers only the packages with a matching criteria when searching for newer packages
Possible values : 'highest-minor' , 'highest-patch', 'latest'
required: true
includePrerelease:
description: Should consider Prerelease versions of NuGet packages.
required: false
default: 'false'
directory:
description: |
Targeted directory, it will look for any csProj file recursively.
example : ./src
default: './'
required: false
targetFramework:
description: 'targeted framework'
required: false
source:
description: |
List of NuGet sources to use. Each source in one line.
required: false
ignore:
description: List of NuGet packages that should be ignored by the action. Each NuGet on one line.
required: false