Skip to content

Commit

Permalink
Merge pull request #543 from DanielKotik/update-actions-in-cpu-tests
Browse files Browse the repository at this point in the history
This fixes Node.js 16 deprecation warnings in cpu-tests.yml
  • Loading branch information
DanielKotik authored Jun 10, 2024
2 parents e967711 + e4a410d commit 8e71856
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set environment variables
run: |
Expand All @@ -46,7 +46,7 @@ jobs:
echo "IMAGE_REPO=$IMAGE_REPO"
- name: Restore cache
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-docker
with:
path: ${{ env.DOCKER_CACHE_PATH }}
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
steps:
- name: "Prepare environment: Restore cache"
if: env.DOCKER_TAG != 'latest'
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-docker
with:
path: ${{ env.DOCKER_CACHE_PATH }}
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
[[ $(docker inspect --format '{{json .State.Running}}' mala-cpu) == 'true' ]]
- name: Check out repository (mala)
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install mala package
# Exec all commands inside the mala-cpu container
Expand Down Expand Up @@ -210,11 +210,11 @@ jobs:
|| startsWith(github.ref, 'refs/tags/')
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Prepare environment: Restore cache"
if: env.DOCKER_TAG != 'latest'
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-docker
with:
path: ${{ env.DOCKER_CACHE_PATH }}
Expand Down

0 comments on commit 8e71856

Please sign in to comment.