diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 583e65e..0441763 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -13,13 +13,13 @@ jobs: steps: # Checkout for the current repo (plugin) into subfolder ./SurfTimer.Plugin - name: Checkout Plugin repo into subfolder - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: SurfTimer.Plugin # Checkout for SurfTimer.Shared as a "sibling" folder (NOT a submodule) - name: Checkout Shared repo (sibling folder) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c6aa43..81bc03a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,14 +37,14 @@ jobs: # Checkout plugin repo at the tag - name: Checkout plugin repository (Timer) - uses: actions/checkout@v5 + uses: actions/checkout@v6 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@v5 + uses: actions/checkout@v6 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared