github: Update actions/checkout to v3

This patch should fix the following github warning:

    Node.js 12 actions are deprecated. Please update the following
    actions to use Node.js 16: actions/checkout@v2
This commit is contained in:
Gleb Chesnokov
2023-05-10 13:34:11 +03:00
parent dede17895a
commit 43ade90329
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
compiler: [gcc, clang]
arch: [x86_64]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install build-essential
run: |
sudo apt-get update
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Get version
id: get_version
+1 -1
View File
@@ -16,7 +16,7 @@ jobs:
commit: ${{github.event.commits}}
steps:
- name: Checkout Project
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{matrix.commit.id}}
fetch-depth: 2