Skip to content
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

make wolfictl-check-updates to be a composite action #27

Merged
merged 1 commit into from Mar 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions wolfictl-check-updates/action.yaml
Expand Up @@ -16,12 +16,12 @@ inputs:
default: ""

runs:
using: 'docker'
image: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:70b855a7ec9cc1fabd1dfc1a7c41eea9bc7bfd402d7574e87cc80e7bb36a64bf
entrypoint: wolfictl
args:
- check
- update
- ${{ inputs.changed_files }}
env:
GITHUB_TOKEN: ${{ inputs.token }}
using: "composite"
steps:
- name: wolfictl-check-updates
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:70b855a7ec9cc1fabd1dfc1a7c41eea9bc7bfd402d7574e87cc80e7bb36a64bf
with:
entrypoint: wolfictl
args: check update ${{ inputs.changed_files }}
env:
GITHUB_TOKEN: ${{ inputs.token }}