mirror of
https://github.com/step-security/harden-runner.git
synced 2026-06-05 22:47:05 +00:00
Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 1.4.5 to 1.5.0.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](dd2c410b08...2e205a28d0)
---
updated-dependencies:
- dependency-name: step-security/harden-runner
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
24 lines
593 B
YAML
24 lines
593 B
YAML
name: Recurring INT tests
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 */2 * * *' # every other hour
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
int-tests:
|
|
name: int tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@2e205a28d0e1da00c5f53b161f4067b052c61f34
|
|
with:
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
- name: Canary test
|
|
uses: docker://ghcr.io/step-security/integration-test/int:latest
|
|
env:
|
|
PAT: ${{ secrets.PAT }}
|
|
canary: true
|