From 5ba213f28e8c7feff6c4579e73abc147f9918e0b Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Thu, 18 Jul 2024 13:55:10 -0700 Subject: [PATCH] chore: upgrade to Aspect Workflows 5.10.8 --- .github/workflows/.aspect-workflows-reusable.yaml | 14 +++++++------- .github/workflows/deps.bzl | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/.aspect-workflows-reusable.yaml b/.github/workflows/.aspect-workflows-reusable.yaml index f904060..718d928 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.10.0) +# Aspect Workflows Reusable Workflow for GitHub Actions (v5.10.8) # -# https://github.com/marketplace/actions/aspect-workflows?version=5.10.0 +# https://github.com/marketplace/actions/aspect-workflows?version=5.10.8 # # 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.10.0 +# uses: my-github-org/workflows-action/.github/workflows/.aspect-workflows-reusable.yaml@5.10.8 # ``` # ================================================================================================== -name: Aspect Workflows Reusable Workflow (v5.10.0) +name: Aspect Workflows Reusable Workflow (v5.10.8) on: # Makes this workflow reusable, see @@ -124,7 +124,7 @@ jobs: output_dir: ${{ fromJson(needs.setup.outputs.cfg).platform.directories.ARTIFACTS_DIR }} - name: Checkout health - uses: aspect-build/workflows-action@5.10.0 + uses: aspect-build/workflows-action@5.10.8 timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].checkout_task_timeout }} if: fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].has_checkout_task with: @@ -132,7 +132,7 @@ jobs: task: checkout - name: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].name }} - uses: aspect-build/workflows-action@5.10.0 + uses: aspect-build/workflows-action@5.10.8 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: @@ -154,7 +154,7 @@ jobs: - name: Delivery manifest if: fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].generate_manifest - uses: aspect-build/workflows-action@5.10.0 + uses: aspect-build/workflows-action@5.10.8 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 }} diff --git a/.github/workflows/deps.bzl b/.github/workflows/deps.bzl index a3dd9f1..a0f7f06 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.10.0" -ASPECT_WORKFLOWS_ACTION_INTEGRITY = "sha256-Ef7TIETkIGkzz+LYSno8DIafTMFl5siAB/J5Lo2b5kM=" +ASPECT_WORKFLOWS_VERSION = "5.10.8" +ASPECT_WORKFLOWS_ACTION_INTEGRITY = "sha256-+9msenI48vxjD5wFjaLwCXF8DIbnLIuMH/IQuz2oZDU=" def aspect_workflows_github_actions_deps(): "Fetch deps needed for Aspect Workflows on GitHub Actions"