From b4ae41752ec2ec798826edd4eddb6fb986efa85a Mon Sep 17 00:00:00 2001 From: Thomas Merz Date: Fri, 22 Dec 2023 14:35:17 +0100 Subject: [PATCH 1/5] =?UTF-8?q?=F0=9F=91=B7=20use=20latest=20major=20versi?= =?UTF-8?q?on=20for=20actions/checkout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7fb8f9f83..195089f64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,7 +122,7 @@ jobs: run-tests-ext: sh steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 #-------- Python 3 ----- - name: Set up supported Python ${{ matrix.python-version }} id: setup-python @@ -433,7 +433,7 @@ jobs: name: Linter runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: From a06c20105b501d3b119954680632d2972bff935f Mon Sep 17 00:00:00 2001 From: Thomas Merz Date: Tue, 11 Jun 2024 16:46:59 +0200 Subject: [PATCH 2/5] use suggestion from dirkf Co-authored-by: dirkf --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 195089f64..059df086d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,7 +122,9 @@ jobs: run-tests-ext: sh steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@master + with: + show-progress: false #-------- Python 3 ----- - name: Set up supported Python ${{ matrix.python-version }} id: setup-python From 879c8b235fbc2f1250c0d3fa07d4f399d18027e8 Mon Sep 17 00:00:00 2001 From: Thomas Merz Date: Tue, 11 Jun 2024 16:47:08 +0200 Subject: [PATCH 3/5] use suggestion from dirkf Co-authored-by: dirkf --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 059df086d..514cf4ba1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -435,7 +435,9 @@ jobs: name: Linter runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + uses: actions/checkout@master + with: + show-progress: false - name: Set up Python uses: actions/setup-python@v4 with: From d478c9a7502c5941c9453cee3012a3fe7b052de9 Mon Sep 17 00:00:00 2001 From: dirkf Date: Tue, 11 Jun 2024 22:47:14 +0100 Subject: [PATCH 4/5] Can the CI be triggered? --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 514cf4ba1..4123d2f4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,6 +122,7 @@ jobs: run-tests-ext: sh steps: - name: Checkout + # v4+ of the action respect show-progress uses: actions/checkout@master with: show-progress: false From 8ee8921485d4a0186eb4ca37d9cc4b2236cab24c Mon Sep 17 00:00:00 2001 From: dirkf Date: Tue, 11 Jun 2024 23:12:38 +0100 Subject: [PATCH 5/5] Fix YAML syntax --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4123d2f4f..8f14d4f43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -436,6 +436,7 @@ jobs: name: Linter runs-on: ubuntu-latest steps: + - name: Checkout uses: actions/checkout@master with: show-progress: false