-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
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
context "github" is not allowed here. no context is available here. #500
Comments
There's more false positives being reported in the latest release ( jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
PGPASSWORD: ${{ github.sha }}
services:
pg:
image: postgres:11-alpine
env:
POSTGRES_PASSWORD: ${{ env.PGPASSWORD }}
ports:
- 5432
options: >-
--health-cmd "pg_isready -d postgres -U postgres"
--health-interval 1s
--health-timeout 1s
--health-retries 10 This build sets up a Postgres instance with a specific password (the SHA of the commit that triggered it) and used to work as the rest of the suite was able to connect to it using a non-default password. Checking the notes of the latest release one reads the following:
While the error that our build breaks with now is as follows:
However, following the link (ref) we can clearly see that |
v1.7.6 for fixing this issue was released. |
It seems like this new check is not working correctly. From what I can tell from the docs
github
is always available.I know for sure that it works in the code snippet below because I've had it for years.
The text was updated successfully, but these errors were encountered: