Skip to content

Commit 03765a0

Browse files
authored
Merge branch 'main' into main
2 parents d2e7f7b + df4d983 commit 03765a0

File tree

6 files changed

+84
-21
lines changed

6 files changed

+84
-21
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
8+
- package-ecosystem: "nuget"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
ignore:
13+
- dependency-name: "System.*"
14+
update-types: ["version-update:semver-major"]
15+
- dependency-name: "Microsoft.Extensions.*"
16+
update-types: ["version-update:semver-major"]

.github/workflows/codeql.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: "CodeQL Advanced"
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
schedule:
9+
- cron: '41 5 * * 4'
10+
11+
jobs:
12+
analyze:
13+
name: Analyze (${{ matrix.language }})
14+
runs-on: 'ubuntu-latest'
15+
permissions:
16+
security-events: write
17+
packages: read
18+
actions: read
19+
contents: read
20+
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
include:
25+
- language: actions
26+
build-mode: none
27+
- language: csharp
28+
build-mode: autobuild
29+
steps:
30+
- name: Checkout repository
31+
uses: actions/checkout@v5
32+
33+
- name: Initialize CodeQL
34+
uses: github/codeql-action/init@v3
35+
with:
36+
languages: ${{ matrix.language }}
37+
build-mode: ${{ matrix.build-mode }}
38+
39+
- name: Perform CodeQL Analysis
40+
uses: github/codeql-action/analyze@v3
41+
with:
42+
category: "/language:${{matrix.language}}"

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
os: ['windows-latest', 'windows-11-arm']
1414
runs-on: ${{ matrix.os }}
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
name: Checkout
1818
- uses: actions/setup-dotnet@v4
1919
with:
@@ -23,7 +23,7 @@ jobs:
2323
dependency-review:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
name: Checkout
2828
- uses: actions/dependency-review-action@v4
2929
name: Dependency Review

Directory.Packages.props

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<Project>
22
<ItemGroup>
3-
<PackageVersion Include="Azure.Identity" Version="1.13.1" />
4-
<PackageVersion Include="Azure.Security.KeyVault.Certificates" Version="4.7.0" />
5-
<PackageVersion Include="Azure.Security.KeyVault.Keys" Version="4.7.0" />
3+
<PackageVersion Include="Azure.Identity" Version="1.14.2" />
4+
<PackageVersion Include="Azure.Security.KeyVault.Certificates" Version="4.8.0" />
5+
<PackageVersion Include="Azure.Security.KeyVault.Keys" Version="4.8.0" />
66
<PackageVersion Include="Microsoft.Extensions.FileSystemGlobbing" Version="8.0.0" />
77
<PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.1" />
88
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
99

1010
<PackageVersion Include="System.Net.Http" Version="4.3.4" />
11-
<PackageVersion Include="System.Text.Json" Version="8.0.5" />
11+
<PackageVersion Include="System.Text.Json" Version="8.0.6" />
1212
<PackageVersion Include="System.Text.RegularExpressions" Version="4.3.1" />
1313

1414
<PackageVersion Include="XenoAtom.CommandLine" Version="1.0.1" />
1515
<PackageVersion Include="MinVer" Version="6.0.0" />
1616

17-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
18-
<PackageVersion Include="xunit.v3" Version="1.0.0" />
19-
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.0" />
17+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
18+
<PackageVersion Include="xunit.v3" Version="3.0.0" />
19+
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.3" />
2020
</ItemGroup>
2121
</Project>

SUPPORT.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
AzureSignTool is supported on an "as-is" basis per the associated [LICENSE]. Support is provided through GitHub issues only.
2+
3+
AzureSignTool is not an official Microsoft product, and nor is it a supported under any Microsoft support aggreements.
4+
5+
[LICENSE]: LICENSE

WALKTHROUGH.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ The following basic preparations are required for all guides:
2323

2424
| Area | Permissions |
2525
| ---- | ----------- |
26-
| Key | Verify, Sign, Get, List |
27-
| Secret | Get, List |
28-
| Certificate | Get, List |
26+
| Key | Sign |
27+
| Secret | Get |
28+
| Certificate | Get |
2929

3030
* In your Azure DevOps build configuration, add a step to install the global tool:
3131

@@ -64,9 +64,9 @@ The following basic preparations are required for all guides:
6464

6565
| Area | Permissions |
6666
| ---- | ----------- |
67-
| Key | Verify, Sign, Get, List |
68-
| Secret | Get, List |
69-
| Certificate | Get, List |
67+
| Key | Sign |
68+
| Secret | Get |
69+
| Certificate | Get |
7070

7171
* In your Azure DevOps build configuration, add a step to install the global tool:
7272

@@ -98,9 +98,9 @@ The following basic preparations are required for all guides:
9898

9999
| Area | Permissions |
100100
| ---- | ----------- |
101-
| Key | Verify, Sign, Get, List |
102-
| Secret | Get, List |
103-
| Certificate | Get, List |
101+
| Key | Sign |
102+
| Secret | Get |
103+
| Certificate | Get |
104104

105105
* In your GitLab build configuration, add a job to install and execute the AzureSignTool:
106106

@@ -134,9 +134,9 @@ sign:
134134

135135
| Area | Permissions |
136136
| ---- | ----------- |
137-
| Key | Verify, Sign, Get, List |
138-
| Secret | Get, List |
139-
| Certificate | Get, List |
137+
| Key | Sign |
138+
| Secret | Get |
139+
| Certificate | Get |
140140

141141

142142
* In your GitLab build configuration, add a step to install and execute the AzureSignTool:

0 commit comments

Comments
 (0)