From 04673440cb4aef38337f6077c10adb88225ae098 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 01:56:27 +0000 Subject: [PATCH 1/3] Bump actions/checkout action to v4 --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7bb0dbb..088e5a8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: container: dockfool/cake-docker:latest steps: - name: Checkout source - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 submodules: recursive @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 submodules: recursive @@ -70,7 +70,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout source - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 submodules: recursive @@ -95,7 +95,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout source - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 submodules: recursive From d04947adce3159cf4e27ad02ae4ddfa20d59b306 Mon Sep 17 00:00:00 2001 From: Sean Fausett Date: Sat, 21 Oct 2023 14:59:09 +1300 Subject: [PATCH 2/3] Disable checkout show progress https://github.com/actions/checkout/pull/1067 --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 088e5a8..5626583 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,6 +29,7 @@ jobs: uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + show-progress: false submodules: recursive - name: Cache packages @@ -48,6 +49,7 @@ jobs: uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + show-progress: false submodules: recursive - name: Install dotnet @@ -73,6 +75,7 @@ jobs: uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + show-progress: false submodules: recursive - name: Install dotnet @@ -98,6 +101,7 @@ jobs: uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + show-progress: false submodules: recursive - name: Install dotnet From ca537634c33b722be5af43ef73b5cd002602340c Mon Sep 17 00:00:00 2001 From: Sean Fausett Date: Sat, 21 Oct 2023 15:01:10 +1300 Subject: [PATCH 3/3] Enable checkout treeless partial clone https://github.com/actions/checkout/pull/1396 --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5626583..8e5d815 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,8 +29,8 @@ jobs: uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + filter: tree:0 show-progress: false - submodules: recursive - name: Cache packages uses: actions/cache@v3.3.2 @@ -49,8 +49,8 @@ jobs: uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + filter: tree:0 show-progress: false - submodules: recursive - name: Install dotnet uses: actions/setup-dotnet@v4.0.0 @@ -75,8 +75,8 @@ jobs: uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + filter: tree:0 show-progress: false - submodules: recursive - name: Install dotnet uses: actions/setup-dotnet@v4.0.0 @@ -101,8 +101,8 @@ jobs: uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + filter: tree:0 show-progress: false - submodules: recursive - name: Install dotnet uses: actions/setup-dotnet@v4.0.0