recommenders-team / recommenders

Best Practices on Recommendation Systems

Home Page:https://recommenders-team.github.io/recommenders/intro.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG] Upgrade GitHub Action azure/login

SimonYansenZhao opened this issue · comments

Description

This bug report is just a reminder that azure/login should be upgraded once a newer version that resolves those issues is released in the future.

azure/login is a GitHub Action used in the testing of Recommenders:

- name: Log in to Azure
uses: azure/login@v1
with:
creds: ${{inputs.AZUREML_TEST_CREDENTIALS}}

However, recent testing logs warn about the Node.js 16 used in azure/login is deprecated (See also GitHub Actions: Transitioning from Node 16 to Node 20), and the pre execution is not supported.
Screenshot 2024-02-20 at 09 39 00

There are also several issues reported in the GitHub repo of azure/login:

And the pre execution issue seems to be originated from actions/runner#1478

In which platform does it happen?

GitHub Actions

How do we replicate the issue?

Those warnings appear on every testing logs.

Expected behavior (i.e. solution)

The warnings should be fixed.

Other Comments

Other GitHub Actions with similar issues have been upgraded:

See PR: Resolve issue #2018

Noticed that node.js version had been upgraded by Azure/login#411, but no new release has been published yet.

Fixed in #1937