Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/axe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891
uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96
with:
files: |
docs/content/components/**/*.md
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: chrnorm/deployment-action@v2.0.7
- uses: chrnorm/deployment-action@v2.0.8
name: Create GitHub deployment for storybook
id: storybook
with:
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Update storybook deployment status (success)
if: success()
uses: chrnorm/deployment-status@v2.0.3
uses: chrnorm/deployment-status@v2.0.4
with:
token: ${{ secrets.GITHUB_TOKEN }}
environment-url: '${{ needs.deploy.outputs.deployment_url }}/storybook'
Expand All @@ -51,7 +51,7 @@ jobs:

- name: Update storybook deployment status (failure)
if: failure()
uses: chrnorm/deployment-status@v2.0.3
uses: chrnorm/deployment-status@v2.0.4
with:
token: ${{ secrets.GITHUB_TOKEN }}
state: 'failure'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Output candidate version number
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const package = require(`${process.env.GITHUB_WORKSPACE}/package.json`)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/welcome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cache: 'npm'

- name: Get or Create Comment
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
name: Semantic Version Label
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v8
- uses: actions/github-script@v9
id: version-result
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -124,7 +124,7 @@ jobs:
return match[0][1]
}

- uses: actions/github-script@v8
- uses: actions/github-script@v9
env:
RELEASE: ${{ steps.version-result.outputs.result }}
with:
Expand Down
Loading