From 1dcd2935a31b80ebb27b8638706930cf3026f1db Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Sun, 3 Dec 2023 15:05:14 -0800 Subject: [PATCH] chore: upgrade to Aspect Workflows 5.8.15 (#96) --- .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 1efc791..0e5cdfc 100644 --- a/.aspect/workflows/terraform/workflows.tf +++ b/.aspect/workflows/terraform/workflows.tf @@ -16,7 +16,7 @@ module "aspect_workflows" { region = local.region # Aspect Workflows terraform module - source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.8.10/workflows-gcp/terraform-gcp-aspect-workflows.zip" + source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.8.15/workflows-gcp/terraform-gcp-aspect-workflows.zip" # Network properties network = google_compute_network.workflows_network.id diff --git a/.github/workflows/.aspect-workflows-reusable.yaml b/.github/workflows/.aspect-workflows-reusable.yaml index a834204..6684b7b 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.8.10) +# Aspect Workflows Reusable Workflow for GitHub Actions (v5.8.15) # -# https://github.com/marketplace/actions/aspect-workflows?version=5.8.10 +# https://github.com/marketplace/actions/aspect-workflows?version=5.8.15 # # 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.8.10 +# uses: my-github-org/workflows-action/.github/workflows/.aspect-workflows-reusable.yaml@5.8.15 # ``` # ================================================================================================== -name: Aspect Workflows Reusable Workflow (v5.8.10) +name: Aspect Workflows Reusable Workflow (v5.8.15) 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.8.10 + uses: aspect-build/workflows-action@5.8.15 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.8.10 + uses: aspect-build/workflows-action@5.8.15 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.8.10 + uses: aspect-build/workflows-action@5.8.15 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 88d1180..d4dbd9d 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.8.10" -ASPECT_WORKFLOWS_ACTION_SHA256 = "a32e795630698422e07965c03c7705bf01c1e912db83219f0f770c55b1cfc55a" +ASPECT_WORKFLOWS_VERSION = "5.8.15" +ASPECT_WORKFLOWS_ACTION_SHA256 = "5ec3972966f971f782f2f267cdf16d8a14dce5a4239b20e65dc345c598507354" def aspect_workflows_github_actions_deps(): "Fetch deps needed for Aspect Workflows on GitHub Actions"