From b918a58a2facb2d5a3aae7df8c911bfedc3e515e Mon Sep 17 00:00:00 2001 From: Vasiliy Vasilyuk Date: Tue, 8 Aug 2023 00:09:07 +0300 Subject: [PATCH] Bump 'actions/checkout' from v2 to v3 Checking the installation (ubuntu-22.04) The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ Checking the installation (macos-latest) The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ --- .github/workflows/continuous-integration.yml | 2 +- .github/workflows/software-continuous-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index c8a6be6..1f92964 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -36,6 +36,6 @@ jobs: - 'macos-latest' runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Checking the installation of dotfiles on ${{ matrix.os }} run: make install diff --git a/.github/workflows/software-continuous-integration.yml b/.github/workflows/software-continuous-integration.yml index d19745c..e702749 100644 --- a/.github/workflows/software-continuous-integration.yml +++ b/.github/workflows/software-continuous-integration.yml @@ -22,6 +22,6 @@ jobs: - 'macos-latest' runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Checking the installation of software on ${{ matrix.os }} run: make install-software