FwfEnumCheck #32
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: FwfEnumCheck | |
env: | |
AWS_REGION: eu-central-1 | |
AWS_ROLE: FirewallFactoryGithubPipelineRole | |
AWS_ACCOUNT: 859220371210 | |
permissions: | |
id-token: write | |
contents: read | |
concurrency: ci-${{ github.ref }} | |
on: | |
schedule: | |
- cron: "0 10 * * 1" | |
jobs: | |
deploy_production_main: | |
name: Check Enums for ManagedRule Groups | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout | |
uses: actions/[email protected] | |
- name: ☊ Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: '21.x' | |
- name: 💾 Cache Node.js modules | |
uses: actions/[email protected] | |
with: | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-node- | |
${{ runner.OS }}- | |
- name: 🌐 Install ts-node and typescript globally | |
run: | | |
npm i -g typescript ts-node @types/node | |
npm link typescript | |
- name: 📦 Install Packages | |
run: | | |
npm install | |
- name: 🔑 Configure AWS credentials | |
uses: aws-actions/[email protected] | |
env: | |
ACCOUNT_ID: ${{ env.AWS_ACCOUNT }} | |
with: | |
role-to-assume: arn:aws:iam::${{ env.ACCOUNT_ID }}:role/${{ env.AWS_ROLE }} | |
aws-region: ${{ env.AWS_REGION }} | |
role-session-name: GitHubActionsSession | |
mask-aws-account-id: false | |
- name: 🧪 Check Enums for ManagedRule Groups | |
run: | | |
ts-node ./workflows/enumcheck.ts |