Skip to content

Commit 4e1ba86

Browse files
gregmagolanalexeagle
authored andcommitted
chore: update to Aspect Workflows 5.7.0 (#427)
1 parent 8bd7088 commit 4e1ba86

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
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-rc10/workflows/terraform-aws-aspect-workflows.zip"
33+
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.7.0/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
@@ -83,7 +83,7 @@ module "aspect_workflows" {
8383
gha_runner_groups = {
8484
# The default runner group is use for the main build & test workflows.
8585
default = {
86-
agent_idle_timeout_min = 5
86+
agent_idle_timeout_min = 1
8787
gh_repo = "aspect-build/rules_ts"
8888
# Determine the workflow ID with:
8989
# gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/aspect-build/rules_ts/actions/workflows

.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-rc10)
2+
# Aspect Workflows Reusable Workflow for GitHub Actions (v5.7.0)
33
#
4-
# https://github.com/marketplace/actions/aspect-workflows?version=5.7.0-rc10
4+
# https://github.com/marketplace/actions/aspect-workflows?version=5.7.0
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]-rc10
40+
# uses: my-github-org/workflows-action/.github/workflows/[email protected]
4141
# ```
4242
# ==================================================================================================
43-
name: Aspect Workflows Reusable Workflow (v5.7.0-rc10)
43+
name: Aspect Workflows Reusable Workflow (v5.7.0)
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]-rc10
114+
uses: aspect-build/[email protected]
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]-rc10
124+
uses: aspect-build/[email protected]
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]-rc10
146+
uses: aspect-build/[email protected]
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/aspect-workflows-warming.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Agent health checks
2121
run: agent_health_check
2222
- name: Create warming archive
23-
uses: aspect-build/[email protected]-rc10
23+
uses: aspect-build/[email protected]
2424
with:
2525
task: warming
2626
- name: Archive warming tars

.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-rc10"
6-
ASPECT_WORKFLOWS_ACTION_SHA256 = "8bcd79f8ad6beb90372002de97e955e18a6b901165ac4de71921a13062374ffb"
5+
ASPECT_WORKFLOWS_VERSION = "5.7.0"
6+
ASPECT_WORKFLOWS_ACTION_SHA256 = "69eea3655b3b2b9cb66bccdd43a068def42e36aeb5c98931ae463bcca28531b4"
77

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

0 commit comments

Comments
 (0)