Skip to content

Commit d6d8784

Browse files
authored
Merge branch 'main' into dependabot/nuget/nuget-minor-and-patch-e795f2ccbe
2 parents ed7b33f + 2b57f16 commit d6d8784

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
- name: Setup .NET (from global.json)
29-
uses: actions/setup-dotnet@v4
29+
uses: actions/setup-dotnet@v5
3030
with:
3131
global-json-file: global.json
3232

3333
- name: Cache NuGet packages
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: ~/.nuget/packages
3737
key: ${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props', '**/*.csproj') }}
@@ -52,15 +52,15 @@ jobs:
5252

5353
- name: Upload test results
5454
if: always()
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v7
5656
with:
5757
name: test-results
5858
path: ./TestResults/**/*.trx
5959
if-no-files-found: warn
6060

6161
- name: Upload coverage
6262
if: always()
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v7
6464
with:
6565
name: coverage
6666
path: ./TestResults/**/coverage.cobertura.xml
@@ -73,15 +73,15 @@ jobs:
7373

7474
steps:
7575
- name: Checkout
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v6
7777

7878
- name: Setup .NET (from global.json)
79-
uses: actions/setup-dotnet@v4
79+
uses: actions/setup-dotnet@v5
8080
with:
8181
global-json-file: global.json
8282

8383
- name: Initialize CodeQL
84-
uses: github/codeql-action/init@v3
84+
uses: github/codeql-action/init@v4
8585
with:
8686
languages: csharp
8787
build-mode: manual
@@ -92,6 +92,6 @@ jobs:
9292
dotnet build Mouse2Joy.sln -c Release --no-restore
9393
9494
- name: Perform CodeQL analysis
95-
uses: github/codeql-action/analyze@v3
95+
uses: github/codeql-action/analyze@v4
9696
with:
9797
category: "/language:csharp"

.github/workflows/codeql-scheduled.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222

2323
- name: Setup .NET (from global.json)
24-
uses: actions/setup-dotnet@v4
24+
uses: actions/setup-dotnet@v5
2525
with:
2626
global-json-file: global.json
2727

2828
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@v3
29+
uses: github/codeql-action/init@v4
3030
with:
3131
languages: csharp
3232
build-mode: manual
@@ -38,6 +38,6 @@ jobs:
3838
dotnet build Mouse2Joy.sln -c Release --no-restore
3939
4040
- name: Perform CodeQL analysis
41-
uses: github/codeql-action/analyze@v3
41+
uses: github/codeql-action/analyze@v4
4242
with:
4343
category: "/language:csharp"

.github/workflows/dependabot-automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- name: Fetch Dependabot metadata
3232
id: meta
33-
uses: dependabot/fetch-metadata@v2
33+
uses: dependabot/fetch-metadata@v3
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
timeout-minutes: 5
2828
steps:
2929
- name: Apply labels from .github/labeler.yml
30-
uses: actions/labeler@v5
30+
uses: actions/labeler@v6
3131
with:
3232
repo-token: ${{ secrets.GITHUB_TOKEN }}
3333
sync-labels: false

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout (full history)
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0
4141

@@ -112,7 +112,7 @@ jobs:
112112
113113
- name: Setup .NET (from global.json)
114114
if: steps.changed.outputs.should_release == 'true'
115-
uses: actions/setup-dotnet@v4
115+
uses: actions/setup-dotnet@v5
116116
with:
117117
global-json-file: global.json
118118

@@ -232,7 +232,7 @@ jobs:
232232
233233
- name: Create GitHub Release (pre-release)
234234
if: steps.changed.outputs.should_release == 'true'
235-
uses: softprops/action-gh-release@v2
235+
uses: softprops/action-gh-release@v3
236236
with:
237237
tag_name: v${{ steps.version.outputs.version }}
238238
name: Mouse2Joy v${{ steps.version.outputs.version }}

0 commit comments

Comments
 (0)