diff --git a/.github/workflows/aws-lc-fips.yml b/.github/workflows/aws-lc-fips.yml deleted file mode 100644 index b7a5dbd3a..000000000 --- a/.github/workflows/aws-lc-fips.yml +++ /dev/null @@ -1,15 +0,0 @@ -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(''))" diff --git a/.github/workflows/aws-lc.yml b/.github/workflows/aws-lc.yml index bed888b91..a73c920c8 100644 --- a/.github/workflows/aws-lc.yml +++ b/.github/workflows/aws-lc.yml @@ -9,7 +9,13 @@ permissions: 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(''))"