Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:

# Checkout plugin repo at the tag
- name: Checkout plugin repository (Timer)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: Timer
ref: ${{ env.RELEASE_TAG }}

# Checkout SurfTimer.Shared as sibling folder (ProjectReference resolves via ../../SurfTimer.Shared)
- name: Checkout SurfTimer.Shared
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: tslashd/SurfTimer.Shared
path: SurfTimer.Shared
Expand All @@ -54,7 +54,7 @@ jobs:
# ref: vX.Y.Z

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

Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
path: ./artifacts

Expand Down