Skip to content

Sweeper

Sweeper #525

Workflow file for this run

name: Sweeper
on:
schedule:
- cron: '0 */12 * * *'
workflow_dispatch:
jobs:
sweeper:
permissions:
id-token: write # aws-actions/configure-aws-credentials@v4.0.1
if: vars.CI_ACCOUNT_ID != '' || github.event_name == 'workflow_dispatch'
strategy:
fail-fast: false
matrix:
region: [us-east-2, us-west-2, eu-west-1, eu-north-1]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: configure aws credentials
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
with:
role-to-assume: arn:aws:iam::${{ vars.CI_ACCOUNT_ID }}:role/${{ vars.CI_ROLE_NAME }}
aws-region: ${{ matrix.region }}
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: test/hack/resource/go.mod
check-latest: true
cache-dependency-path: "test/hack/resource/go.sum"
# eu-north-1 contains the soak tests and resources should be swept if they are older than 8 days
- run: |
if [[ "${{ matrix.region }}" == "eu-north-1" ]]; then
go run main.go --expiration 192h
else
go run main.go --expiration 12h
fi
working-directory: ./test/hack/resource/clean
name: "Run cleanup script"