Stian Frøystein

Results 6 comments of Stian Frøystein

> I know it's not ideal, but note that you can use `datadog_monitor` to set up integrations that don't have a recipe yet. > > See: https://github.com/DataDog/chef-datadog#datadog_monitor Using `datadog_monitor` for...

@albertvaka just what I was looking for, it works great! :) Here's what I ended up with for anyone interested: ```ruby ruby_block 'list systemd services' do block do Chef::Resource::RubyBlock.include Chef::Mixin::ShellOut...

Hi, I ran in to the same issue. Any chance of this being looked at again?

I am having the same issue with a configuration like this: ``` jobs: trivy-analysis: runs-on: ubuntu-latest - name: Run Trivy uses: aquasecurity/[email protected] with: scan-type: "config" exit-code: "1" format: "sarif" output:...

Works for me since `0.28.0` with the following job: ```yaml jobs: trivy-analysis: name: Trivy Analysis runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Run Trivy vulnerability scanner...