# HG changeset patch # User Bram Moolenaar # Date 1654115403 -7200 # Node ID a8c0c5865e73af6bf4081e2e02744246fe602816 # Parent cc8b6c130dffbdbc0c521a8d4b38f98deca6b36e patch 8.2.5052: CI checkout step title is a bit cryptic Commit: https://github.com/vim/vim/commit/bfaa24f95343af9c058696644375d04e660f1b00 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Wed Jun 1 21:26:34 2022 +0100 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 https://github.com/vim/vim/issues/10509) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- 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 --- 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 --- 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: | diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 5052, +/**/ 5051, /**/ 5050,