Skip to content

Commit

Permalink
chore: upgrade to Aspect Workflows 5.8.0-rc8
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Sep 23, 2023
1 parent 7eb19f3 commit fa954fc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .aspect/workflows/terraform/workflows.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data "google_compute_image" "runner_image" {

module "aspect_workflows" {
# Aspect Workflows terraform module
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.8.0-rc7/workflows-gcp/terraform-gcp-aspect-workflows.zip"
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.8.0-rc8/workflows-gcp/terraform-gcp-aspect-workflows.zip"

# Network properties
network = google_compute_network.workflows_network.id
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/.aspect-workflows-reusable.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ==================================================================================================
# Aspect Workflows Reusable Workflow for GitHub Actions (v5.8.0-rc7)
# Aspect Workflows Reusable Workflow for GitHub Actions (v5.8.0-rc8)
#
# https://github.com/marketplace/actions/aspect-workflows?version=5.8.0-rc7
# https://github.com/marketplace/actions/aspect-workflows?version=5.8.0-rc8
#
# At this time, GitHub Actions does not allow referencing reusable workflows from public
# repositories in other organizations. See
Expand Down Expand Up @@ -37,10 +37,10 @@
# jobs:
# aspect-workflows:
# name: Aspect Workflows
# uses: my-github-org/workflows-action/.github/workflows/.aspect-workflows-reusable.yaml@5.8.0-rc7
# uses: my-github-org/workflows-action/.github/workflows/.aspect-workflows-reusable.yaml@5.8.0-rc8
# ```
# ==================================================================================================
name: Aspect Workflows Reusable Workflow (v5.8.0-rc7)
name: Aspect Workflows Reusable Workflow (v5.8.0-rc8)

on:
# Makes this workflow reusable, see
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
echo "filtered_secrets=${FILTERED_SECRETS}" | tee ${GITHUB_OUTPUT}
- name: Branch Freshness
uses: aspect-build/workflows-action@5.8.0-rc7
uses: aspect-build/workflows-action@5.8.0-rc8
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 }}
Expand All @@ -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.0-rc7
uses: aspect-build/workflows-action@5.8.0-rc8
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:
Expand All @@ -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.0-rc7
uses: aspect-build/workflows-action@5.8.0-rc8
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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aspect-workflows-warming.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Agent health checks
run: agent_health_check
- name: Create warming archive
uses: aspect-build/workflows-action@5.7.0
uses: aspect-build/workflows-action@5.8.0-rc8
with:
task: warming
- name: Archive warming tars
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

ASPECT_WORKFLOWS_VERSION = "5.8.0-rc7"
ASPECT_WORKFLOWS_ACTION_SHA256 = "236fb42c40aa299ec50d7aba7fbbbde6833b0f91f826c414a1f0bf564c0eda3d"
ASPECT_WORKFLOWS_VERSION = "5.8.0-rc8"
ASPECT_WORKFLOWS_ACTION_SHA256 = "e53cc20d417b18c1b8a1deb323962e7d0306b28d8f7e23d93612110301d3c0bd"

def aspect_workflows_github_actions_deps():
"Fetch deps needed for Aspect Workflows on GitHub Actions"
Expand Down

0 comments on commit fa954fc

Please sign in to comment.