Skip to content

track tags with a map #16

track tags with a map

track tags with a map #16

Workflow file for this run

name: Update Plugins-dev
on:
push:
branches: [ master ]
workflow_dispatch:
# Checks if any concurrent jobs is already being executed for master and cancel it.
concurrency:
group: ci-master
cancel-in-progress: true
jobs:
build-plugins-dev:
uses: falcosecurity/plugins/.github/workflows/reusable_build_packages.yaml@master
with:
makecommand: make packages -j4
suffix: dev
secrets: inherit
get-changed-plugins:
uses: ./.github/workflows/reusable_get_changed_plugins.yaml
build-rules-tool:
needs: [get-changed-plugins]
if: needs.get-changed-plugins.outputs.changed-plugins != '[]' && needs.get-changed-plugins.outputs.changed-plugins != ''
uses: ./.github/workflows/reusable_build_rules_tool.yaml
with:
output: rules-checker
repository: falcosecurity/rules
validate-plugins:
needs: [build-plugins-dev, get-changed-plugins, build-rules-tool]
if: needs.get-changed-plugins.outputs.changed-plugins != '[]' && needs.get-changed-plugins.outputs.changed-plugins != ''
strategy:
fail-fast: false
matrix:
plugin: ${{ fromJson(needs.get-changed-plugins.outputs.changed-plugins) }}
uses: ./.github/workflows/reusable_validate_plugins.yaml
with:
plugin: ${{ matrix.plugin }}
falcoctl-version: 0.6.2
falco-image: falcosecurity/falco-no-driver:0.36.2
plugins-artifact: plugins-x86_64-dev.tar.gz
rules-checker: ./rules-checker
arch: x86_64
publish-plugins-dev:

Check failure on line 48 in .github/workflows/master.yaml

View workflow run for this annotation

GitHub Actions / Update Plugins-dev

Invalid workflow file

The workflow is not valid. .github/workflows/master.yaml (Line: 48, Col: 3): Error calling workflow 'falcosecurity/plugins/.github/workflows/reusable_publish_packages.yaml@master'. The workflow is requesting 'id-token: write', but is only allowed 'id-token: none'.
needs: [build-plugins-dev, validate-plugins]
uses: falcosecurity/plugins/.github/workflows/reusable_publish_packages.yaml@master
with:
suffix: dev
secrets: inherit