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
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Publish Test Project
run: dotnet publish TTT/Test/Test.csproj --no-restore --no-build -o build_output -c Debug

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: build_output
path: build_output
Expand All @@ -59,7 +59,7 @@ jobs:
dotnet-version: '8.0.x'

- name: Download Build Output
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: build_output
path: build_output
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Nightly
name: Nightly
on:
push:
branches:
Expand All @@ -19,14 +19,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
show-progress: true

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
fi

- name: Upload Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: TTT
path: build/TTT
Expand Down
Loading