Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
name: Build library
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5.0.0
with:
Expand All @@ -58,7 +58,7 @@ jobs:
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5.0.0
with:
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Publish library
run: dotnet pack -c Release -v minimal --no-build --no-restore --include-symbols --include-source -o ./artifacts DisCatSharp.slnx
- name: Upload artifacts
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: DisCatSharp
path: ./artifacts/
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
language: ["csharp"]
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Build documentation
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.NYUW_TOKEN_GH }}
- name: Setup .NET
Expand All @@ -41,7 +41,7 @@ jobs:
shell: pwsh
run: ./DisCatSharp.Tools/pack-docs.ps1 -DocsPath "./DisCatSharp.Docs" -OutputPath "./" -PackageName "dcs-docs"
- name: Upload packed docs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: dcs-docs.zip
path: dcs-docs.zip
Expand All @@ -65,15 +65,15 @@ jobs:
needs: build
steps:
- name: Checkout docs repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: Aiko-IT-Systems/DisCatSharp.Docs
token: ${{ secrets.NYUW_TOKEN_GH }}
- name: Purge old docs
shell: pwsh
run: Get-ChildItem -Exclude .git* | Remove-Item -Recurse -Force
- name: Download packed docs
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: dcs-docs.zip
- name: Extract new docs
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/documentation_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
name: Build documentation
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.NYUW_TOKEN_GH }}
path: GitHub/DisCatSharp
- name: Checkout docs repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: Aiko-IT-Systems/DisCatSharp.Docs
token: ${{ secrets.NYUW_TOKEN_GH }}
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
run: ./DisCatSharp.Tools/pack-docs.ps1 -DocsPath "./DisCatSharp.Docs" -OutputPath "./" -PackageName "dcs-docs-preview"
working-directory: GitHub/DisCatSharp
- name: Upload packed docs
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: dcs-docs-preview.zip
path: GitHub/DisCatSharp/dcs-docs-preview.zip
Expand All @@ -73,7 +73,7 @@ jobs:
run: Get-ChildItem -Exclude .git* | Remove-Item -Recurse -Force
working-directory: GitHub/DisCatSharp.Docs
- name: Download packed docs
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: dcs-docs-preview.zip
path: GitHub/DisCatSharp.Docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/emoji-autogen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.NYUW_TOKEN_GH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/internal-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Build library and release internally
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5.0.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/public-dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
name: Build library and release internally
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5.0.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
name: Build library and release
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Check Intention
if: ${{!inputs.release_as_prerelease}}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sentry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set outputs
id: vars
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tweet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: "Get Release Tag"
id: tags
run: |
Expand Down
Loading