From 82a1ac07bb66d3bdedc3f8baa618c350e82df8ff Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Tue, 3 Dec 2024 22:46:55 -0700 Subject: [PATCH] chore: bump GitHub actions to Workflows 5.11.20 (#744) --- .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 6641accc..19c5d2ed 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.11.17) +# Aspect Workflows Reusable Workflow for GitHub Actions (v5.11.20) # -# https://github.com/marketplace/actions/aspect-workflows?version=5.11.17 +# https://github.com/marketplace/actions/aspect-workflows?version=5.11.20 # # 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.11.17 +# uses: my-github-org/workflows-action/.github/workflows/.aspect-workflows-reusable.yaml@5.11.20 # ``` # ================================================================================================== -name: Aspect Workflows Reusable Workflow (v5.11.17) +name: Aspect Workflows Reusable Workflow (v5.11.20) on: # Makes this workflow reusable, see # https://github.blog/2022-02-10-using-reusable-workflows-github-actions @@ -116,14 +116,14 @@ jobs: write_output_files: true output_dir: ${{ fromJson(needs.setup.outputs.cfg).platform.directories.ARTIFACTS_DIR }} - name: Checkout health - uses: aspect-build/workflows-action@5.11.17 + uses: aspect-build/workflows-action@5.11.20 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: workspace: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace }} task: checkout - name: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].name }} - uses: aspect-build/workflows-action@5.11.17 + uses: aspect-build/workflows-action@5.11.20 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: SLACK_WEBHOOK_URL: ${{ secrets[inputs.slack_webhook_url] }} - name: Delivery manifest if: fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].generate_manifest - uses: aspect-build/workflows-action@5.11.17 + uses: aspect-build/workflows-action@5.11.20 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 6f461d4a..37e14797 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.11.17" -ASPECT_WORKFLOWS_ACTION_INTEGRITY = "sha256-3RvALkcpaiCbfdPGD96P+0AVS6/PfvIXFsADKF/Gy1M=" +ASPECT_WORKFLOWS_VERSION = "5.11.20" +ASPECT_WORKFLOWS_ACTION_INTEGRITY = "sha256-nfkucf4ZmYvkrdmqowk0RqyL6LxpbFEaRoIc5gxq4no=" def aspect_workflows_github_actions_deps(): "Fetch deps needed for Aspect Workflows on GitHub Actions"