From 43ade9032969ab74d32a4c88ae6f74e2bd38b812 Mon Sep 17 00:00:00 2001 From: Gleb Chesnokov Date: Fri, 13 Jan 2023 16:39:45 +0300 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 2 +- .github/workflows/coverity.yml | 2 +- .github/workflows/mail_notification.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7853ae6c8..2d878d895 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 9477cfd8b..083ef0f46 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -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 diff --git a/.github/workflows/mail_notification.yml b/.github/workflows/mail_notification.yml index f795a6d45..36ff7722e 100644 --- a/.github/workflows/mail_notification.yml +++ b/.github/workflows/mail_notification.yml @@ -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