Skip to content

Commit 238ae8c

Browse files
chore(deps): update github packages
1 parent f17d5c7 commit 238ae8c

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Build library
2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
- name: Setup .NET
2929
uses: actions/setup-dotnet@v5.0.0
3030
with:

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
language: [ 'csharp' ]
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
- name: Initialize CodeQL
28-
uses: github/codeql-action/init@v3
28+
uses: github/codeql-action/init@v4
2929
with:
3030
languages: ${{ matrix.language }}
3131
- name: Setup .NET
@@ -40,4 +40,4 @@ jobs:
4040
- name: Build
4141
run: dotnet build -c Release -v minimal --no-restore --no-self-contained
4242
- name: Perform CodeQL Analysis
43-
uses: github/codeql-action/analyze@v3
43+
uses: github/codeql-action/analyze@v4

.github/workflows/documentation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Build documentation
1515
steps:
1616
- name: Checkout current project
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v5.0.0
2020
with:
@@ -37,7 +37,7 @@ jobs:
3737
shell: pwsh
3838
run: ./pack-docs.ps1 -DocsPath "./DisCatSharp.Extensions.Docs" -OutputPath "./" -PackageName "dcs-ext-docs"
3939
- name: Upload packed docs
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v6
4141
with:
4242
name: dcs-ext-docs.zip
4343
path: dcs-ext-docs.zip
@@ -48,15 +48,15 @@ jobs:
4848
needs: build
4949
steps:
5050
- name: Checkout docs repository
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252
with:
5353
repository: Aiko-IT-Systems/DisCatSharp.Extensions.Docs
5454
token: ${{ secrets.NYUW_TOKEN_GH }}
5555
- name: Purge old docs
5656
shell: pwsh
5757
run: Get-ChildItem -Exclude .git* | Remove-Item -Recurse -Force
5858
- name: Download packed docs
59-
uses: actions/download-artifact@v5
59+
uses: actions/download-artifact@v7
6060
with:
6161
name: dcs-ext-docs.zip
6262
- name: Extract new docs

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Build library and release
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- name: Setup .NET
3131
uses: actions/setup-dotnet@v5.0.0
3232
with:

0 commit comments

Comments
 (0)