-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e21509
commit e38f417
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# ================================================================================================== | ||
# Aspect Workflows Reusable Workflow for GitHub Actions (v5.9.16) | ||
# Aspect Workflows Reusable Workflow for GitHub Actions (v5.9.17) | ||
# | ||
# https://github.com/marketplace/actions/aspect-workflows?version=5.9.16 | ||
# https://github.com/marketplace/actions/aspect-workflows?version=5.9.17 | ||
# | ||
# 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/[email protected].16 | ||
# uses: my-github-org/workflows-action/.github/workflows/[email protected].17 | ||
# ``` | ||
# ================================================================================================== | ||
name: Aspect Workflows Reusable Workflow (v5.9.16) | ||
name: Aspect Workflows Reusable Workflow (v5.9.17) | ||
|
||
on: | ||
# Makes this workflow reusable, see | ||
|
@@ -116,22 +116,22 @@ jobs: | |
run: rm -rf ${{ join(fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].artifact_paths, ' ') }} | ||
|
||
- name: Determine changed files | ||
uses: tj-actions/changed-files@v41 | ||
uses: tj-actions/changed-files@v42 | ||
if: endsWith(matrix.job, 'format') | ||
with: | ||
json: true | ||
write_output_files: true | ||
output_dir: ${{ fromJson(needs.setup.outputs.cfg).platform.directories.ARTIFACTS_DIR }} | ||
|
||
- name: Branch Freshness | ||
uses: aspect-build/[email protected].16 | ||
uses: aspect-build/[email protected].17 | ||
timeout-minutes: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].branch_freshness_timeout }} | ||
with: | ||
workspace: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].workspace }} | ||
task: branch_freshness | ||
|
||
- name: ${{ fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].name }} | ||
uses: aspect-build/[email protected].16 | ||
uses: aspect-build/[email protected].17 | ||
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: | ||
|
@@ -142,7 +142,7 @@ jobs: | |
id: slack | ||
# oncall cares about branches that do delivery, so key this on whether we produce a delivery manifest | ||
if: inputs.slack_webhook_url != '' && failure() && fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].generate_manifest | ||
uses: slackapi/slack-github-action@v1.24.0 | ||
uses: slackapi/slack-github-action@v1.25.0 | ||
with: | ||
payload: | | ||
{ | ||
|
@@ -153,7 +153,7 @@ jobs: | |
|
||
- name: Delivery Manifest | ||
if: fromJson(needs.setup.outputs.cfg).workflows_config[matrix.job].generate_manifest | ||
uses: aspect-build/[email protected].16 | ||
uses: aspect-build/[email protected].17 | ||
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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ If you forked the repo to your org, then replace `my-org` with your org in this | |
jobs: | ||
aspect-workflows: | ||
name: Aspect Workflows | ||
uses: my-org/workflows-action/.github/workflows/[email protected].16 | ||
uses: my-org/workflows-action/.github/workflows/[email protected].17 | ||
``` | ||
If you vendored the file, then instead it will be: | ||
|
@@ -105,7 +105,7 @@ jobs: | |
- name: Agent health checks | ||
run: /etc/aspect/workflows/bin/agent_health_check | ||
- name: Run Delivery | ||
uses: aspect-build/[email protected].16 | ||
uses: aspect-build/[email protected].17 | ||
with: | ||
task: delivery | ||
env: | ||
|