Skip to content

Commit 92206e8

Browse files
authored
Updating to actions v4
1 parent 2bd2eb0 commit 92206e8

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/workflows/dotnet-build.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Setup .NET
18-
uses: actions/setup-dotnet@v3
18+
uses: actions/setup-dotnet@v4
1919
with:
2020
dotnet-version: '8.0.x' # Update this to match your project's .NET version
2121

@@ -24,10 +24,3 @@ jobs:
2424

2525
- name: Build
2626
run: dotnet build --configuration Release --no-restore
27-
28-
# Optional: Upload build artifacts
29-
- name: Upload build artifacts
30-
uses: actions/upload-artifact@v3
31-
with:
32-
name: build-output
33-
path: '**/bin/Release/**/*' # Adjust this path as needed for your project structure

0 commit comments

Comments
 (0)