Skip to content

Commit 06232bd

Browse files
chore(deps): update github packages
1 parent 0b04108 commit 06232bd

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: Build library
3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
- name: Setup .NET
3737
uses: actions/setup-dotnet@v5.0.0
3838
with:
@@ -58,7 +58,7 @@ jobs:
5858
needs: build
5959
steps:
6060
- name: Checkout repository
61-
uses: actions/checkout@v5
61+
uses: actions/checkout@v6
6262
- name: Setup .NET
6363
uses: actions/setup-dotnet@v5.0.0
6464
with:
@@ -77,7 +77,7 @@ jobs:
7777
- name: Publish library
7878
run: dotnet pack -c Release -v minimal --no-build --no-restore --include-symbols --include-source -o ./artifacts DisCatSharp.slnx
7979
- name: Upload artifacts
80-
uses: actions/upload-artifact@v5.0.0
80+
uses: actions/upload-artifact@v6.0.0
8181
with:
8282
name: DisCatSharp
8383
path: ./artifacts/

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
language: ["csharp"]
3535
steps:
3636
- name: Checkout repository
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
- name: Initialize CodeQL
3939
uses: github/codeql-action/init@v4
4040
with:

.github/workflows/documentation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build documentation
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
token: ${{ secrets.NYUW_TOKEN_GH }}
2121
- name: Setup .NET
@@ -41,7 +41,7 @@ jobs:
4141
shell: pwsh
4242
run: ./DisCatSharp.Tools/pack-docs.ps1 -DocsPath "./DisCatSharp.Docs" -OutputPath "./" -PackageName "dcs-docs"
4343
- name: Upload packed docs
44-
uses: actions/upload-artifact@v5
44+
uses: actions/upload-artifact@v6
4545
with:
4646
name: dcs-docs.zip
4747
path: dcs-docs.zip
@@ -65,15 +65,15 @@ jobs:
6565
needs: build
6666
steps:
6767
- name: Checkout docs repository
68-
uses: actions/checkout@v5
68+
uses: actions/checkout@v6
6969
with:
7070
repository: Aiko-IT-Systems/DisCatSharp.Docs
7171
token: ${{ secrets.NYUW_TOKEN_GH }}
7272
- name: Purge old docs
7373
shell: pwsh
7474
run: Get-ChildItem -Exclude .git* | Remove-Item -Recurse -Force
7575
- name: Download packed docs
76-
uses: actions/download-artifact@v6
76+
uses: actions/download-artifact@v7
7777
with:
7878
name: dcs-docs.zip
7979
- name: Extract new docs

.github/workflows/documentation_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
name: Build documentation
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
token: ${{ secrets.NYUW_TOKEN_GH }}
2121
path: GitHub/DisCatSharp
2222
- name: Checkout docs repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
repository: Aiko-IT-Systems/DisCatSharp.Docs
2626
token: ${{ secrets.NYUW_TOKEN_GH }}
@@ -52,7 +52,7 @@ jobs:
5252
run: ./DisCatSharp.Tools/pack-docs.ps1 -DocsPath "./DisCatSharp.Docs" -OutputPath "./" -PackageName "dcs-docs-preview"
5353
working-directory: GitHub/DisCatSharp
5454
- name: Upload packed docs
55-
uses: actions/upload-artifact@v5.0.0
55+
uses: actions/upload-artifact@v6.0.0
5656
with:
5757
name: dcs-docs-preview.zip
5858
path: GitHub/DisCatSharp/dcs-docs-preview.zip
@@ -73,7 +73,7 @@ jobs:
7373
run: Get-ChildItem -Exclude .git* | Remove-Item -Recurse -Force
7474
working-directory: GitHub/DisCatSharp.Docs
7575
- name: Download packed docs
76-
uses: actions/download-artifact@v6
76+
uses: actions/download-artifact@v7
7777
with:
7878
name: dcs-docs-preview.zip
7979
path: GitHub/DisCatSharp.Docs

.github/workflows/emoji-autogen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
timeout-minutes: 10
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
token: ${{ secrets.NYUW_TOKEN_GH }}

.github/workflows/internal-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Build library and release internally
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Setup .NET
2525
uses: actions/setup-dotnet@v5.0.0
2626
with:

.github/workflows/public-dev-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Build library and release internally
3535
steps:
3636
- name: Checkout repository
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
- name: Setup .NET
3939
uses: actions/setup-dotnet@v5.0.0
4040
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
name: Build library and release
4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
- name: Check Intention
4848
if: ${{!inputs.release_as_prerelease}}
4949
run: |

.github/workflows/sentry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: "Checkout repository"
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: Set outputs
1818
id: vars
1919
run: |

.github/workflows/tweet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 5
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- name: "Get Release Tag"
1515
id: tags
1616
run: |

0 commit comments

Comments
 (0)