Skip to content

Commit 16797c7

Browse files
author
mike dupont
committed
update actions
1 parent 4172c7c commit 16797c7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/base-actions/clinicjs-toolkit/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ runs:
3131
using: composite
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v4
34+
uses: meta-introspector/checkout@v4
3535

3636
- name: Setup Node.js
37-
uses: actions/setup-node@v4
37+
uses: meta-introspector/setup-node@v4
3838
with:
3939
node-version: '20.x'
4040

@@ -75,7 +75,7 @@ runs:
7575
mv artifacts/performance-tests/${{ inputs.artifact-suffix }}/$FILENAME.html artifacts/performance-tests/${{ inputs.artifact-suffix }}/${{ inputs.artifact-suffix }}.html
7676
7777
- name: Upload Clinic Report as Artifact
78-
uses: actions/upload-artifact@v4
78+
uses: meta-introspector/upload-artifact@v4
7979
with:
8080
name: ${{ env.short_sha }}-${{ inputs.artifact-suffix }}
8181
path: artifacts/performance-tests

.github/base-actions/performance-reporter/action.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,27 @@ runs:
99
using: composite
1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v4
12+
uses: meta-introspector/checkout@v4
1313

1414
- name: Get short SHA
1515
id: get_sha
1616
shell: bash
1717
run: echo "short_sha=${GITHUB_SHA::6}" >> $GITHUB_ENV
1818

1919
- name: Download artifact
20-
uses: actions/download-artifact@v4
20+
uses: meta-introspector/download-artifact@v4
2121
with:
2222
name: "${{ env.short_sha }}-flame-artifact"
2323
path: artifacts/performance-tests/${{ env.short_sha }}
2424

2525
- name: Download artifact
26-
uses: actions/download-artifact@v4
26+
uses: meta-introspector/download-artifact@v4
2727
with:
2828
name: "${{ env.short_sha }}-doctor-artifact"
2929
path: artifacts/performance-tests/${{ env.short_sha }}
3030

3131
- name: Deploy to GitHub Pages
32-
uses: peaceiris/actions-gh-pages@v4
32+
uses: meta-introspector/actions-gh-pages@v4
3333
with:
3434
github_token: ${{ inputs.gh-token }}
3535
publish_dir: artifacts
@@ -47,7 +47,7 @@ runs:
4747
4848
- name: Comment on Pull Request
4949
if: env.PR_NUMBER != 'null'
50-
uses: actions/github-script@v7
50+
uses: meta-introspector/github-script@v7
5151
with:
5252
github-token: ${{ inputs.gh-token }}
5353
script: |

0 commit comments

Comments
 (0)