These two jobs run on exactly the same triggers and are effectively variations
of each other. There is no need to have two separate workflows for them.
+++ /dev/null
-name: AWS-LC-FIPS
-
-on:
- schedule:
- - cron: "0 0 * * 4"
- workflow_dispatch:
-
-permissions:
- contents: read
-
-jobs:
- test:
- uses: ./.github/workflows/aws-lc-template.yml
- with:
- command: "from matrix import determine_latest_aws_lc_fips; print(determine_latest_aws_lc_fips(''))"
contents: read
jobs:
- test:
+ aws-lc:
+ name: AWS-LC
uses: ./.github/workflows/aws-lc-template.yml
with:
command: "from matrix import determine_latest_aws_lc; print(determine_latest_aws_lc(''))"
+ aws-lc-fips:
+ name: AWS-LC (FIPS)
+ uses: ./.github/workflows/aws-lc-template.yml
+ with:
+ command: "from matrix import determine_latest_aws_lc_fips; print(determine_latest_aws_lc_fips(''))"