Skip to content

Commit

Permalink
ci: bump actions to v4 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 for fixing the following GitHub warning:

    Node.js 16 actions are deprecated.
    Please update the following actions to use Node.js 20

NO_DOC=ci
NO_TEST=ci
NO_CHANGELOG=ci
  • Loading branch information
ylobankov authored and sergepetrenko committed Mar 14, 2024
1 parent 686bde3 commit 4d650ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: 'Clone the vshard module'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/vshard
# Fetch the entire history for all branches and tags. It is needed for
Expand All @@ -25,7 +25,7 @@ jobs:
submodules: recursive

- name: 'Download the tarantool build artifact'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact_name }}

Expand Down

0 comments on commit 4d650ef

Please sign in to comment.