Skip to content
This repository was archived by the owner on Jan 4, 2026. It is now read-only.

Commit 57febba

Browse files
authored
Update GHA actions (#40)
Old actions were blocking build
1 parent b2b79a9 commit 57febba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/linux-x64.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313

1414
steps:
1515
- name: Setup .NET
16-
uses: actions/setup-dotnet@v3
16+
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: 8.0.x
1919
- name: Clone repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121
- name: Restore dependencies
2222
run: dotnet restore src/Theorem.sln
2323
- name: Build
2424
run: dotnet build --no-restore src/Theorem.sln
2525
- name: Publish
2626
run: dotnet publish -c Release -r linux-x64 --self-contained=true -p:PublishReadyToRun=true -o publish/Theorem src/Theorem/Theorem.csproj
2727
- name: Upload Artifact
28-
uses: actions/upload-artifact@v2
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: Theorem
3131
path: publish/Theorem

0 commit comments

Comments
 (0)