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)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 62be12d..1941430 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -61,7 +61,8 @@
extra: vimtags
steps:
- - uses: actions/checkout@v3
+ - name: Checkout repository from github
+ uses: actions/checkout@v3
- name: Install packages
run: |
@@ -295,7 +296,8 @@
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 @@
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 6b9db03..efb9e66 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -36,7 +36,7 @@
# 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 7d9341e..a58a20b 100644
--- a/.github/workflows/coverity.yml
+++ b/.github/workflows/coverity.yml
@@ -13,7 +13,8 @@
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
index 9df4167..36a69d9 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 5052,
+/**/
5051,
/**/
5050,