From be0f71e4ede457e9bb7dd05fd4e8fa3db499cfbc Mon Sep 17 00:00:00 2001 From: Yaroslav Lobankov Date: Thu, 14 Mar 2024 17:13:41 +0400 Subject: [PATCH] ci: bump actions in reusable_testing.yml Bump version of the `actions/checkout` and `actions/download-artifact` actions to v4. Bump version of the `actions/setup-go` action to v5. It is needed for fixing the following GitHub warnings: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20 The following actions uses node12 which is deprecated and will be forced to run on node16 --- .github/workflows/reusable_testing.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable_testing.yml b/.github/workflows/reusable_testing.yml index df60cd3f..35265310 100644 --- a/.github/workflows/reusable_testing.yml +++ b/.github/workflows/reusable_testing.yml @@ -14,12 +14,12 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Clone the go-tarantool connector - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ github.repository_owner }}/go-tarantool - name: Download the tarantool build artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.artifact_name }} @@ -34,7 +34,7 @@ jobs: echo "TNT_VERSION=$TNT_VERSION" >> $GITHUB_ENV - name: Setup golang for connector and tests - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: '1.20'