question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Unexpected input 'env_vars'

See original GitHub issue
      - name: Upload coverage to Codecov
        uses: codecov/codecov-action@v1
        with:
          env_vars: OS,PYTHON

triggers warning Unexpected input 'env_vars', valid inputs are ['name', 'token', 'file', 'flags', 'fail_ci_if_error'] despite following the example of https://github.com/codecov/codecov-action#arguments

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:2
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

7reactions
TsumiNacommented, May 21, 2020

have same warning

1reaction
pmeiercommented, Jun 17, 2020

env_vars was only introduced by v0.1.7. You could pin the version in the workflow:

- name: Upload coverage to Codecov
  uses: codecov/codecov-action@v1.0.7
  with:
    env_vars: OS,PYTHON
Read more comments on GitHub >

github_iconTop Results From Across the Web

Unexpected input(s) · Issue #10 · SpicyPizza/create-envfile
I wanted to use this action so I could create an .env file in the same directory as my app (where my sources...
Read more >
Unexpected '/' in environment variables
I've tried unsetting BINREF (Sys.unset...) or setting to an empty string, or adding a double backslash when setting ( \\ ) but the...
Read more >
Problems with Environment Variables
To check which environment variables are set, do the following (works for all versions of Windows): Open a DOS box (or a Command...
Read more >
ENV02-J. Do not trust the values of environment variables
Compliant Solution. This compliant solution obtains the user name using the user.name system property. The Java Virtual Machine (JVM), upon initialization, ...
Read more >
Env Variables and Modes
An env file for a specific mode (e.g. .env.production ) will take higher priority than a generic one (e.g. .env ). In addition,...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found