Skip to content

Commit 0e7ac00

Browse files
authored
chore: update to Aspect Workflows 5.7.1 (#435)
1 parent 9b26a0e commit 0e7ac00

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.aspect/workflows/terraform/workflows.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module "aspect_workflows" {
3030
}
3131

3232
# Aspect Workflows terraform module
33-
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.7.0/workflows/terraform-aws-aspect-workflows.zip"
33+
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.7.1/workflows/terraform-aws-aspect-workflows.zip"
3434

3535
# Non-terraform Aspect Workflows release artifacts are pulled from the region specific
3636
# aspect-artifacts bucket during apply. Aspect will grant your AWS account access to this bucket
@@ -93,7 +93,7 @@ module "aspect_workflows" {
9393
min_runners = 0
9494
queue = "aspect-default"
9595
resource_type = "default"
96-
scaling_polling_frequency = 3 # check for queued jobs every 20s
96+
scaling_polling_frequency = 2 # check for queued jobs every 30s
9797
warming = true
9898
}
9999
# The warming runner group is used for the periodic warming job that creates

.github/workflows/.aspect-workflows-reusable.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ==================================================================================================
2-
# Aspect Workflows Reusable Workflow for GitHub Actions (v5.7.0)
2+
# Aspect Workflows Reusable Workflow for GitHub Actions (v5.7.1)
33
#
4-
# https://github.com/marketplace/actions/aspect-workflows?version=5.7.0
4+
# https://github.com/marketplace/actions/aspect-workflows?version=5.7.1
55
#
66
# At this time, GitHub Actions does not allow referencing reusable workflows from public
77
# repositories in other organizations. See
@@ -37,10 +37,10 @@
3737
# jobs:
3838
# aspect-workflows:
3939
# name: Aspect Workflows
40-
# uses: my-github-org/workflows-action/.github/workflows/[email protected].0
40+
# uses: my-github-org/workflows-action/.github/workflows/[email protected].1
4141
# ```
4242
# ==================================================================================================
43-
name: Aspect Workflows Reusable Workflow (v5.7.0)
43+
name: Aspect Workflows Reusable Workflow (v5.7.1)
4444

4545
on:
4646
# Makes this workflow reusable, see
@@ -111,7 +111,7 @@ jobs:
111111
echo "filtered_secrets=${FILTERED_SECRETS}" | tee ${GITHUB_OUTPUT}
112112
113113
- name: Branch Freshness
114-
uses: aspect-build/[email protected].0
114+
uses: aspect-build/[email protected].1
115115
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 }}
116116
with:
117117
workspace: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace }}
@@ -121,7 +121,7 @@ jobs:
121121
run: rm -rf ${{ join(fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].artifact_paths, ' ') }}
122122

123123
- name: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].task }}
124-
uses: aspect-build/[email protected].0
124+
uses: aspect-build/[email protected].1
125125
env: ${{ inputs.inherited_secrets != '' && fromJson(steps.process_secrets.outputs.filtered_secrets) || fromJson('{}') }}
126126
timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].timeout_in_minutes }}
127127
with:
@@ -143,7 +143,7 @@ jobs:
143143

144144
- name: Delivery Manifest
145145
if: fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].generate_manifest
146-
uses: aspect-build/[email protected].0
146+
uses: aspect-build/[email protected].1
147147
timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).task_config[fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace].tasks['delivery'].timeout_in_minutes }}
148148
with:
149149
workspace: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace }}

.github/workflows/deps.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

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

5-
ASPECT_WORKFLOWS_VERSION = "5.7.0"
6-
ASPECT_WORKFLOWS_ACTION_SHA256 = "69eea3655b3b2b9cb66bccdd43a068def42e36aeb5c98931ae463bcca28531b4"
5+
ASPECT_WORKFLOWS_VERSION = "5.7.1"
6+
ASPECT_WORKFLOWS_ACTION_SHA256 = "abdf68cebe27270cb11297f462f4433ad82f77fd93c21f756914f236bb4859d1"
77

88
def aspect_workflows_github_actions_deps():
99
"Fetch deps needed for Aspect Workflows on GitHub Actions"

0 commit comments

Comments
 (0)