Skip to content

Commit ad19c69

Browse files
committed
Pin versions
1 parent bafd935 commit ad19c69

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
- package-ecosystem: "nuget"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"sign": {
6+
"version": "0.9.1-beta.26102.1",
7+
"commands": [
8+
"sign"
9+
]
10+
}
11+
}
12+
}

actions/code-signing/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
2828
- name: Azure CLI login with federated credential
2929
if: steps.should_sign.outputs.should_sign == 'true'
30-
uses: azure/login@v2
30+
uses: azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 # v2.3.0
3131
with:
3232
client-id: ${{inputs.client-id}}
3333
tenant-id: ${{inputs.tenant-id}}
@@ -36,7 +36,8 @@ runs:
3636
- name: Install sign cli
3737
if: steps.should_sign.outputs.should_sign == 'true'
3838
shell: cmd
39-
run: dotnet tool install --global sign --prerelease
39+
run: dotnet tool restore
40+
working-directory: ${{ github.action_path }}
4041

4142
- name: Sign executables and libraries
4243
if: steps.should_sign.outputs.should_sign == 'true'

0 commit comments

Comments
 (0)