mirror of
https://github.com/vee1e/gittuf.git
synced 2026-09-04 11:47:09 +00:00
Bumps the all group with 1 update: [gittuf/gittuf-installer](https://github.com/gittuf/gittuf-installer).
Updates `gittuf/gittuf-installer` from 0.6.1 to 0.7.0
- [Release notes](https://github.com/gittuf/gittuf-installer/releases)
- [Commits](f31e69c7c1...f6589511b7)
---
updated-dependencies:
- dependency-name: gittuf/gittuf-installer
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: all
...
Signed-off-by: dependabot[bot] <support@github.com>
26 lines
694 B
YAML
26 lines
694 B
YAML
name: Run demo
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
permissions: read-all
|
|
jobs:
|
|
demo:
|
|
name: Run demo
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout demo repository
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
|
with:
|
|
repository: gittuf/demo
|
|
- name: Install Python
|
|
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install gittuf-installer
|
|
uses: gittuf/gittuf-installer@f6589511b7fb806ce365de81caa949b5c468089a
|
|
- name: Run demo script
|
|
run: python run-demo.py --no-prompt
|