Skip to content

Commit

Permalink
Sync internal change to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Mar 4, 2024
1 parent 6e21509 commit e38f417
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 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.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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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: |
{
Expand All @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit e38f417

Please sign in to comment.