We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd45fa0 commit a469d42Copy full SHA for a469d42
.github/actions/update-lockfiles/action.yml
@@ -1,12 +1,14 @@
1
name: 'Update Lockfiles'
2
-description: 'Force restore and commit updated NuGet lock files for Dependabot NuGet PRs'
+description: 'Force restore and commit updated NuGet lock files for Dependabot PRs'
3
4
runs:
5
using: 'composite'
6
steps:
7
- name: Force restore
8
shell: bash
9
- run: dotnet restore --force-evaluate
+ run: |
10
+ echo "work space: $GITHUB_WORKSPACE"
11
+ dotnet restore --force-evaluate
12
13
- name: Commit and Push Changes
14
0 commit comments