diff --git a/.github/workflows/dynamo_bin_diff.yml b/.github/workflows/dynamo_bin_diff.yml index ea127f65b5f..9637d3c7d38 100644 --- a/.github/workflows/dynamo_bin_diff.yml +++ b/.github/workflows/dynamo_bin_diff.yml @@ -39,7 +39,7 @@ jobs: Write-Error "DynamoCLI.exe was not found!" } - name: Cache Current Build - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{ github.workspace }}\Dynamo\bin\AnyCPU\Release @@ -77,7 +77,7 @@ jobs: Write-Error "DynamoCLI.exe was not found!" } - name: Cache Master Build - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ${{ github.workspace }}\master\bin\AnyCPU\Release key: ${{ github.run_id }}-${{ github.run_attempt }}-master @@ -87,7 +87,7 @@ jobs: runs-on: windows-latest steps: - name: Restore Current Build - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: fail-on-cache-miss: true path: | @@ -95,7 +95,7 @@ jobs: ${{ github.workspace }}\Dynamo\.github\scripts key: ${{ github.run_id }}-${{ github.run_attempt }}-current - name: Restore Master Build - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: fail-on-cache-miss: true path: ${{ github.workspace }}\master\bin\AnyCPU\Release