fix: cassandra sub package fix and updates from version 4 #21905
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Wolfictl Check Updates | |
on: | |
pull_request: | |
branches: ['main'] | |
push: | |
branches: | |
- gh-readonly-queue/main/** | |
jobs: | |
lint: | |
name: Wolfictl Check Updates | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get changed files | |
id: files | |
uses: tj-actions/changed-files@210cc839c24f532fe4fbf510b7b3314ca9a2b90b # v35.5.1 | |
with: | |
separator: ' ' | |
files: "*.yaml" | |
files_ignore: ".yam.yaml" | |
- name: Check | |
id: check | |
if: ${{ steps.files.outputs.all_changed_files != '' }} | |
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:ef58db775e9830f28dab689c060348df67f750216dd20ec31a6ae3949cc118dc | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
entrypoint: wolfictl | |
args: check update ${{ steps.files.outputs.all_changed_files }} |