From bfaa24f95343af9c058696644375d04e660f1b00 Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Wed, 1 Jun 2022 21:26:34 +0100 Subject: patch 8.2.5052: CI checkout step title is a bit cryptic Problem: CI checkout step title is a bit cryptic. Solution: Add a better title. (closes #10509) --- .github/workflows/ci.yml | 9 ++++++--- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/coverity.yml | 3 ++- 3 files changed, 9 insertions(+), 5 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62be12dda4..194143040b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,8 @@ jobs: extra: vimtags steps: - - uses: actions/checkout@v3 + - name: Checkout repository from github + uses: actions/checkout@v3 - name: Install packages run: | @@ -295,7 +296,8 @@ jobs: features: [tiny, normal, huge] steps: - - uses: actions/checkout@v3 + - name: Checkout repository from github + uses: actions/checkout@v3 - name: Install packages if: matrix.features == 'huge' @@ -432,7 +434,8 @@ jobs: msystem: ${{ matrix.msystem }} release: false - - uses: actions/checkout@v3 + - name: Checkout repository from github + uses: actions/checkout@v3 - name: Create a list of download URLs shell: cmd diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6b9db03492..efb9e66995 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -36,7 +36,7 @@ jobs: # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection steps: - - name: Checkout repository + - name: Checkout repository from github uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 7d9341e969..a58a20b615 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -13,7 +13,8 @@ jobs: DEBIAN_FRONTEND: noninteractive steps: - - uses: actions/checkout@v3 + - name: Checkout repository from github + uses: actions/checkout@v3 - name: Download Coverity run: | -- cgit v1.2.3