diff --git a/.aspect/workflows/terraform/workflows.tf b/.aspect/workflows/terraform/workflows.tf index 9552898..8a03973 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.9.0-rc.0/workflows-gcp/terraform-gcp-aspect-workflows.zip" + source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.9.0-rc.6/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 1dada19..fdb3d62 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.9.0-rc.0) +# Aspect Workflows Reusable Workflow for GitHub Actions (v5.9.0-rc.6) # -# https://github.com/marketplace/actions/aspect-workflows?version=5.9.0-rc.0 +# https://github.com/marketplace/actions/aspect-workflows?version=5.9.0-rc.6 # # 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.9.0-rc.0 +# uses: my-github-org/workflows-action/.github/workflows/.aspect-workflows-reusable.yaml@5.9.0-rc.6 # ``` # ================================================================================================== -name: Aspect Workflows Reusable Workflow (v5.9.0-rc.0) +name: Aspect Workflows Reusable Workflow (v5.9.0-rc.6) on: # Makes this workflow reusable, see @@ -101,7 +101,7 @@ jobs: - name: Agent health checks run: ${{ fromJson(needs.setup.outputs.cfg).platform.directories.WORKFLOWS_BIN_DIR }}/agent_health_check - timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).task_config[fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace].tasks['bazel_health_probe'].timeout_in_minutes }} + timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].health_check_timeout }} - name: Process Secrets id: process_secrets @@ -123,14 +123,14 @@ jobs: output_dir: ${{ fromJson(needs.setup.outputs.cfg).platform.directories.ARTIFACTS_DIR }} - name: Branch Freshness - uses: aspect-build/workflows-action@5.9.0-rc.0 - 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 }} + uses: aspect-build/workflows-action@5.9.0-rc.6 + timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].branch_freshness_timeout }} with: workspace: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace }} task: branch_freshness - name: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].name }} - uses: aspect-build/workflows-action@5.9.0-rc.0 + uses: aspect-build/workflows-action@5.9.0-rc.6 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: @@ -152,8 +152,8 @@ jobs: - name: Delivery Manifest if: fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].generate_manifest - uses: aspect-build/workflows-action@5.9.0-rc.0 - timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).task_config[fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace].tasks['delivery'].timeout_in_minutes }} + uses: aspect-build/workflows-action@5.9.0-rc.6 + timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].delivery_manifest_timout }} with: workspace: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace }} task: delivery_manifest diff --git a/.github/workflows/aspect-workflows-delivery.yaml b/.github/workflows/aspect-workflows-delivery.yaml index c7f7220..2be6323 100644 --- a/.github/workflows/aspect-workflows-delivery.yaml +++ b/.github/workflows/aspect-workflows-delivery.yaml @@ -33,7 +33,7 @@ jobs: - name: Agent health checks run: ${ASPECT_WORKFLOWS_BIN_DIR}/agent_health_check - name: Run Delivery - uses: ./workflows/rosetta/gh-actions + uses: aspect-build/workflows-action@5.9.0-rc.6 with: task: delivery env: diff --git a/.github/workflows/aspect-workflows-warming.yaml b/.github/workflows/aspect-workflows-warming.yaml index 5a058c8..e606996 100644 --- a/.github/workflows/aspect-workflows-warming.yaml +++ b/.github/workflows/aspect-workflows-warming.yaml @@ -22,7 +22,7 @@ jobs: - name: Agent health checks run: ${ASPECT_WORKFLOWS_BIN_DIR}/agent_health_check - name: Create warming archive - uses: aspect-build/workflows-action@5.8.2 + uses: aspect-build/workflows-action@5.9.0-rc.6 with: task: warming - name: Archive warming tars diff --git a/.github/workflows/deps.bzl b/.github/workflows/deps.bzl index d732553..908a93f 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.9.0-rc.0" -ASPECT_WORKFLOWS_ACTION_SHA256 = "9f1f87a45aa2fd2af15bd315d87ff09efed917268328e7993704c89f9d0e9a3a" +ASPECT_WORKFLOWS_VERSION = "5.9.0-rc.6" +ASPECT_WORKFLOWS_ACTION_SHA256 = "0d48acf3ce5fbca0a8c1eb3be3dc2afee6f159bfbeffbd2e39290310ccdd7b50" def aspect_workflows_github_actions_deps(): "Fetch deps needed for Aspect Workflows on GitHub Actions"