From b5583254b84f8b7e1c8e3f1faa93d4f5a8ec4944 Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Sat, 9 Sep 2023 15:17:47 -0700 Subject: [PATCH] chore: update to Aspect Workflows 5.7.5 (#444) --- .aspect/workflows/terraform/workflows.tf | 2 +- .github/workflows/.aspect-workflows-reusable.yaml | 14 +++++++------- .github/workflows/deps.bzl | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.aspect/workflows/terraform/workflows.tf b/.aspect/workflows/terraform/workflows.tf index dcfb024a..e217792c 100644 --- a/.aspect/workflows/terraform/workflows.tf +++ b/.aspect/workflows/terraform/workflows.tf @@ -30,7 +30,7 @@ module "aspect_workflows" { } # Aspect Workflows terraform module - source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.7.3/workflows/terraform-aws-aspect-workflows.zip" + source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.7.5/workflows/terraform-aws-aspect-workflows.zip" # Non-terraform Aspect Workflows release artifacts are pulled from the region specific # aspect-artifacts bucket during apply. Aspect will grant your AWS account access to this bucket diff --git a/.github/workflows/.aspect-workflows-reusable.yaml b/.github/workflows/.aspect-workflows-reusable.yaml index a1df84e4..ddaf1657 100644 --- a/.github/workflows/.aspect-workflows-reusable.yaml +++ b/.github/workflows/.aspect-workflows-reusable.yaml @@ -1,7 +1,7 @@ # ================================================================================================== -# Aspect Workflows Reusable Workflow for GitHub Actions (v5.7.3) +# Aspect Workflows Reusable Workflow for GitHub Actions (v5.7.5) # -# https://github.com/marketplace/actions/aspect-workflows?version=5.7.3 +# https://github.com/marketplace/actions/aspect-workflows?version=5.7.5 # # At this time, GitHub Actions does not allow referencing reusable workflows from public # repositories in other organizations. See @@ -37,10 +37,10 @@ # jobs: # aspect-workflows: # name: Aspect Workflows -# uses: my-github-org/workflows-action/.github/workflows/.aspect-workflows-reusable.yaml@5.7.3 +# uses: my-github-org/workflows-action/.github/workflows/.aspect-workflows-reusable.yaml@5.7.5 # ``` # ================================================================================================== -name: Aspect Workflows Reusable Workflow (v5.7.3) +name: Aspect Workflows Reusable Workflow (v5.7.5) on: # Makes this workflow reusable, see @@ -111,7 +111,7 @@ jobs: echo "filtered_secrets=${FILTERED_SECRETS}" | tee ${GITHUB_OUTPUT} - name: Branch Freshness - uses: aspect-build/workflows-action@5.7.3 + uses: aspect-build/workflows-action@5.7.5 timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).task_config[fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace].tasks['branch_freshness'].timeout_in_minutes }} with: workspace: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace }} @@ -121,7 +121,7 @@ jobs: run: rm -rf ${{ join(fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].artifact_paths, ' ') }} - name: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].task }} - uses: aspect-build/workflows-action@5.7.3 + uses: aspect-build/workflows-action@5.7.5 env: ${{ inputs.inherited_secrets != '' && fromJson(steps.process_secrets.outputs.filtered_secrets) || fromJson('{}') }} timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].timeout_in_minutes }} with: @@ -143,7 +143,7 @@ jobs: - name: Delivery Manifest if: fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].generate_manifest - uses: aspect-build/workflows-action@5.7.3 + uses: aspect-build/workflows-action@5.7.5 timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).task_config[fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace].tasks['delivery'].timeout_in_minutes }} with: workspace: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace }} diff --git a/.github/workflows/deps.bzl b/.github/workflows/deps.bzl index 70620ef4..eca9f6bd 100644 --- a/.github/workflows/deps.bzl +++ b/.github/workflows/deps.bzl @@ -2,8 +2,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") -ASPECT_WORKFLOWS_VERSION = "5.7.3" -ASPECT_WORKFLOWS_ACTION_SHA256 = "66df0494590dd415234981523859019baa4c909e5917212f60f9adf76bae23c6" +ASPECT_WORKFLOWS_VERSION = "5.7.5" +ASPECT_WORKFLOWS_ACTION_SHA256 = "9c04ab089b25095a41210f139ad53d086fb59fcc56a9ed7cfdf9302ecdb8dc03" def aspect_workflows_github_actions_deps(): "Fetch deps needed for Aspect Workflows on GitHub Actions"