Skip to content

Commit

Permalink
gha: fix node deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
csegarragonz committed Jan 25, 2024
1 parent 62c022d commit 2010b2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
password: ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }}
steps:
- name: "Check out code"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build docs"
run: ./bin/inv_wrapper.sh docs

Expand All @@ -53,7 +53,7 @@ jobs:
password: ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }}
steps:
- name: "Check out code"
uses: actions/checkout@v3
uses: actions/checkout@v4
# We need to set the safe git directory as formatting relies on git-ls
# See actions/checkout#766
- name: "Set the GH workspace as a safe git directory"
Expand Down Expand Up @@ -137,14 +137,14 @@ jobs:
CONAN_CACHE_MOUNT_SOURCE: ~/.conan/
steps:
- name: "Log in to ACR"
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: faasm.azurecr.io
username: ${{ secrets.ACR_SERVICE_PRINCIPAL_ID }}
password: ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }}
# --- Code update ---
- name: "Check out code"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Conan cache"
uses: faasm/conan-cache-action@v1
- name: "Build distributed tests"
Expand Down

0 comments on commit 2010b2a

Please sign in to comment.