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
So I've tried to use the pdk "nightly" image...
- name: Run pdk validate uses: puppets-epic-show-theatre/action-pdk-validate@v1.1.0 with: pdk-image: puppet/pdk:nightly puppet-version: ${{ matrix.puppet_version }}
...but unfortunately, the GitHub Action still uses the "latest" image. From the GitHub Actions logs:
... Download action repository 'puppets-epic-show-theatre/action-pdk-validate@v1.1.0' (SHA:4536bf103a3c2b92ddee02dfceab99a27ef2e83f) ... Build container for action use: '/home/runner/work/_actions/puppets-epic-show-theatre/action-pdk-validate/v1.1.0/Dockerfile'. /usr/bin/docker build -t a5c76b:ebfbbc0bea1d492c8f1f5190da4765ee -f "/home/runner/work/_actions/puppets-epic-show-theatre/action-pdk-validate/v1.1.0/Dockerfile" "/home/runner/work/_actions/puppets-epic-show-theatre/action-pdk-validate/v1.1.0" Sending build context to Docker daemon 41.98kB Step 1/5 : ARG PDKIMAGE=puppet/pdk:latest Step 2/5 : FROM $PDKIMAGE latest: Pulling from puppet/pdk ...
So it looks like that pdk-image parameter does nothing. Or am I doing something wrong?
pdk-image
The text was updated successfully, but these errors were encountered:
@cdenneen You've contributed the pdk-image functionality, maybe you could comment on this issue? Thanks :)
Sorry, something went wrong.
I think it has never and ever worked PDFIMAGE is an ARG and not an ENV so you have to use --build-arg to use in at container build time.
According to https://github.com/orgs/community/discussions/25241 this is not supported as-is
No branches or pull requests
So I've tried to use the pdk "nightly" image...
...but unfortunately, the GitHub Action still uses the "latest" image. From the GitHub Actions logs:
So it looks like that
pdk-image
parameter does nothing. Or am I doing something wrong?The text was updated successfully, but these errors were encountered: