diff options
author | Philip H <47042125+pheiduck@users.noreply.github.com> | 2022-05-20 17:19:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-20 17:19:06 +0100 |
commit | 8a83ffdc43a4fc904f686864a24a5b0f240df593 (patch) | |
tree | 5f640d37f0aa7986a6cde67369c404b1b17efed9 /.github | |
parent | 875339b22a989d0782097036169e8fb9e2100d7e (diff) | |
download | vim-git-8a83ffdc43a4fc904f686864a24a5b0f240df593.tar.gz |
patch 8.2.4986: some github actions are outdatedv8.2.4986
Problem: Some github actions are outdated.
Solution: Update CodeQl to v2, update checkout to v3. (closes #10450)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 8 | ||||
-rw-r--r-- | .github/workflows/coverity.yml | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 438bfd9ea..62be12dda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: extra: vimtags steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install packages run: | @@ -295,7 +295,7 @@ jobs: features: [tiny, normal, huge] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install packages if: matrix.features == 'huge' @@ -432,7 +432,7 @@ jobs: msystem: ${{ matrix.msystem }} release: false - - uses: actions/checkout@v2 + - 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 6ec3f420e..6b9db0349 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,11 +37,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -52,7 +52,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v2 # âšī¸ Command-line programs to run using the OS shell. # đ https://git.io/JvXDl @@ -66,4 +66,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 4b3ee192c..7d9341e96 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -13,7 +13,7 @@ jobs: DEBIAN_FRONTEND: noninteractive steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Download Coverity run: | |