diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 73bfbca..b781bd6 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@v6 + uses: actions/checkout@v7 with: path: SurfTimer.Plugin # Checkout for SurfTimer.Shared as a "sibling" folder (NOT a submodule) - name: Checkout Shared repo (sibling folder) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c60db9..cb997ff 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@v6 + uses: actions/checkout@v7 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@v6 + uses: actions/checkout@v7 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared