Skip to content

build(deps): bump anchore/scan-action from 3 to 4 #205

build(deps): bump anchore/scan-action from 3 to 4

build(deps): bump anchore/scan-action from 3 to 4 #205

---
name: Functional Tests
on: # yamllint disable-line rule:truthy
pull_request: {}
push:
branches:
- main
defaults:
run:
shell: sh
jobs:
run-script:
name: Run script
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os: ["ubuntu", "macos", "windows"]
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
- name: Setup Kitten
id: setup-kitten
continue-on-error: true
uses: ./
- name: Run script
if: ${{ steps.setup-kitten.outcome == 'success' }}
run: kitten ./hello-world.ktn
- name: Validate outcome
run: |
if [ "${RUNNER_OS}" != "macOS" ] && [ "${{ steps.setup-kitten.outcome }}" = "failure" ]; then
exit 1
fi