Hey @Arthur T,
It looks like azd
is still using the old api-version=2023-01-01
even though you're installing the latest version. This might be happening because azd
hasn’t fully updated its API references, or GitHub Actions could be caching an older dependency.
Try clearing any cached versions of azd
in the GitHub runner before reinstalling:
- name: Remove cached azd
run: rm -rf ~/.azd
- name: Install latest azd
run: curl -L https://aka.ms/install-azd.sh | bash
If deployment is actually succeeding but failing on the status check, you could temporarily bypass it with azd up --no-status-check
.
If this issue started after upgrading setup-azd@v2
, rolling back to an earlier version (like 1.11.0
) might be worth testing. Still if it keeps causing trouble, switching to az webapp up
instead of azd
could be a good workaround.
Hope it helps!
Please do not forget to click "Accept the answer” and Yes
wherever the information provided helps you, this can be beneficial to other community members.
If you have any other questions or still running into more issues, let me know in the "comments" and I would be happy to help you.