Skip to content

Commit

Permalink
ci: bump actions in reusable_testing.yml
Browse files Browse the repository at this point in the history
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 warning:

    Node.js 16 actions are deprecated.
    Please update the following actions to use Node.js 20
  • Loading branch information
ylobankov committed Mar 14, 2024
1 parent 95c7afc commit 6a3e655
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/reusable_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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'

Expand Down

0 comments on commit 6a3e655

Please sign in to comment.