We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The GitHub actions commands set-output and set-state will be deprecated see this blog post --> https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This repo is using the set-output
A fix for setting the node version could be the following action step:
jobs: build: runs-on: ubuntu-latest steps: - name: Set nvmrc version as .env variable run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV - name: Use Node.js (.nvmrc) uses: actions/setup-node@v3 with: node-version: "${{ env.NODE_VERSION }}"
The text was updated successfully, but these errors were encountered:
The code using this feature is located here --> https://github.com/search?q=repo%3Atechnologiestiftung%2Fgiessdenkiez-de-osm-pumpen-harvester%20set-output&type=code
@JensWinter If you want to fix this one we would be eternally grateful
Sorry, something went wrong.
Closed by #42
No branches or pull requests
The GitHub actions commands set-output and set-state will be deprecated see this blog post --> https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This repo is using the set-output
A fix for setting the node version could be the following action step:
The text was updated successfully, but these errors were encountered: