Skip to content

Commit afd4946

Browse files
chore(deps): Bump the dependencies group with 5 updates (#223)
Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `6.0.3` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.35.3` | `4.36.1` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `5.2.0` | `5.3.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6.0.0` | `6.0.1` | | [NuGet/login](https://github.com/nuget/login) | `1.1.0` | `1.2.0` | Updates `actions/checkout` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@de0fac2...df4cb1c) Updates `github/codeql-action` from 4.35.3 to 4.36.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@e46ed2c...87557b9) Updates `actions/setup-dotnet` from 5.2.0 to 5.3.0 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@c2fa09f...9a946fd) Updates `codecov/codecov-action` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@57e3a13...e79a696) Updates `NuGet/login` from 1.1.0 to 1.2.0 - [Release notes](https://github.com/nuget/login/releases) - [Commits](NuGet/login@d22cc5f...8d19675) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: github/codeql-action dependency-version: 4.36.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: actions/setup-dotnet dependency-version: 5.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: codecov/codecov-action dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: NuGet/login dependency-version: 1.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Anurag Bandyopadhyay <angbpy@gmail.com>
1 parent 4a5cbcb commit afd4946

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
27+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2828

2929
# Initializes the CodeQL tools for scanning.
3030
- name: Initialize CodeQL
31-
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
31+
uses: github/codeql-action/init@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
3232
with:
3333
languages: csharp
3434
build-mode: manual
@@ -40,6 +40,6 @@ jobs:
4040
dotnet build
4141
4242
- name: Perform CodeQL Analysis
43-
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
43+
uses: github/codeql-action/analyze@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
4444
with:
4545
category: "/language:csharp"

.github/workflows/main.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ jobs:
5454

5555
steps:
5656
- name: Checkout code
57-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2
57+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4.2.2
5858
with:
5959
fetch-depth: 0
6060

6161
- name: Setup .NET versions
62-
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
62+
uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
6363
with:
6464
dotnet-version: |
6565
3.1.x
@@ -95,7 +95,7 @@ jobs:
9595
- name: Upload coverage to Codecov
9696
# Only upload coverage from one matrix job to avoid conflicts
9797
if: matrix.os == 'ubuntu-latest' && matrix.framework == 'net8.0'
98-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
98+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
9999
continue-on-error: true
100100
with:
101101
token: ${{ secrets.CODECOV_TOKEN }}
@@ -110,12 +110,12 @@ jobs:
110110

111111
steps:
112112
- name: Checkout code
113-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2
113+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4.2.2
114114
with:
115115
fetch-depth: 0
116116

117117
- name: Setup .NET versions
118-
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
118+
uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
119119
with:
120120
dotnet-version: |
121121
3.1.x
@@ -159,12 +159,12 @@ jobs:
159159
needs: [test, build-verification]
160160
steps:
161161
- name: Checkout code
162-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2
162+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4.2.2
163163
with:
164164
fetch-depth: 0
165165

166166
- name: Setup .NET
167-
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
167+
uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
168168
with:
169169
dotnet-version: |
170170
3.1.x
@@ -208,7 +208,7 @@ jobs:
208208
needs: [pack]
209209

210210
steps:
211-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2
211+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4.2.2
212212

213213
- name: Verify versions match
214214
run: |
@@ -239,12 +239,12 @@ jobs:
239239

240240
steps:
241241
- name: Checkout code
242-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2
242+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4.2.2
243243
with:
244244
fetch-depth: 0
245245

246246
- name: Setup .NET
247-
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
247+
uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
248248
with:
249249
dotnet-version: |
250250
3.1.x
@@ -262,7 +262,7 @@ jobs:
262262
path: ./dist
263263

264264
- name: NuGet login (OIDC)
265-
uses: NuGet/login@d22cc5f58ff5b88bf9bd452535b4335137e24544 # v1.1.0
265+
uses: NuGet/login@8d196754b4036150537f80ac539e15c2f1028841 # v1.2.0
266266
id: login
267267
with:
268268
user: ${{ secrets.NUGET_USER }}

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: "Checkout code"
37-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2
37+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4.2.2
3838
with:
3939
persist-credentials: false
4040

@@ -73,6 +73,6 @@ jobs:
7373
# Upload the results to GitHub's code scanning dashboard (optional).
7474
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7575
- name: "Upload to code-scanning"
76-
uses: github/codeql-action/upload-sarif@e46ed2cbd01164d986452f91f178727624ae40d7 #v2.22.3
76+
uses: github/codeql-action/upload-sarif@87557b9c84dde89fdd9b10e88954ac2f4248e463 #v2.22.3
7777
with:
7878
sarif_file: results.sarif

0 commit comments

Comments
 (0)