Skip to content

Commit 24ce7e0

Browse files
thecoderokclaude
andcommitted
Update GitHub Actions workflow to use current versions
- Update actions/upload-artifact from v2 to v4 (fixes deprecation warning) - Update actions/checkout from v1 to v4 - Update actions/setup-dotnet from v1 to v4 with .NET 8.0.x 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4675163 commit 24ce7e0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/release-tag.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v4
1616
- name: Setup .NET Core
17-
uses: actions/setup-dotnet@v1
17+
uses: actions/setup-dotnet@v4
18+
with:
19+
dotnet-version: '8.0.x'
1820
- name: Build
1921
run: dotnet build -c Release
2022
- name: Tests
2123
run: dotnet test -c Release --no-build
2224
- name: Pack artifacts
2325
run: dotnet pack src -c Release --no-build -o artifacts/
2426
- name: Collect artifacts
25-
uses: actions/upload-artifact@v2
27+
uses: actions/upload-artifact@v4
2628
with:
2729
name: nupkg
2830
path: artifacts/

0 commit comments

Comments
 (0)