Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish-static-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
steps:
# Sanity check that the preview deployment is for a package that we support. This is to prevent the workflow from running in an undefined state.
- name: Assert that preview deployment is for a known package
uses: actions/github-script@v8
uses: actions/github-script@v9
if: ${{ inputs.package-name != '@evervault/ui-components' && inputs.package-name != '@evervault/browser' }}
with:
script: |
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
# For Packages which have multiple paths that need to be invalidated, its easier to use the batch invalidation API than it is to programmatically pass the `--paths` flag to the CLI.
# As a result, we split the list of paths on comma and create the expected payload (ref: https://docs.aws.amazon.com/cli/latest/reference/cloudfront/create-invalidation.html)
- name: Prepare cloudfront payload
uses: actions/github-script@v8
uses: actions/github-script@v9
id: prepare-cloudfront-payload
with:
script: |
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
S3_BUCKET_VAR: ${{ inputs.s3-bucket-var-name }}
run: aws s3 cp dist s3://${{ vars[env.S3_BUCKET_VAR] }}/ --recursive
- name: Prepare cloudfront payload
uses: actions/github-script@v8
uses: actions/github-script@v9
id: prepare-cloudfront-payload
with:
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
outputs:
package-name: ${{ steps.get-package-name.outputs.result }}
steps:
- uses: actions/github-script@v8
- uses: actions/github-script@v9
id: get-package-name
env:
RELEASE_TAG: ${{ inputs.release-tag }}
Expand Down
Loading