skip to Main Content

Ubuntu – Why does my GitHub linting action fail when using Python 3.12.3 with an Astroid building error?

After changing from Python 3.10.0 to 3.12.3 our workflow fails with: Traceback (most recent call last): File "/opt/hostedtoolcache/Python/3.12.3/x64/bin/pylint", line 8, in <module> sys.exit(run_pylint()) ^^^^^^^^^^^^ File "/opt/hostedtoolcache/Python/3.12.3/x64/lib/python3.12/site-packages/pylint/__init__.py", line 25, in run_pylint PylintRun(argv or sys.argv[1:]) File "/opt/hostedtoolcache/Python/3.12.3/x64/lib/python3.12/site-packages/pylint/lint/run.py", line 207, in __init__ linter.check(args)…

VIEW QUESTION

Ubuntu – github actions doesn't recognize configuration variables

I am using the very simple workflow: name: Deploy Frontend # env: # REACT_APP_API_URL: ${{ vars.REACT_APP_API_URL }} # CORS_ALLOWED_ORIGINS: ${{ vars.CORS_ALLOWED_ORIGINS }} env: REACT_APP_API_URL: MY_REACT_APP_API_URL CORS_ALLOWED_ORIGINS: MY_CORS_ALLOWED_ORIGINS on: push: branches: [main, staging, frontend] paths: - 'frontend/**' - '.github/workflows/deploy_frontend.yml' workflow_dispatch: jobs:…

VIEW QUESTION
Back To Top
Search