Recurring INT tests #912
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@63c24ba6bd7ba022e95695ff85de572c04a18142 | |
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 | |
int-tls-tests: | |
name: int tls tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 | |
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-tls: true |