File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ jobs:
1212 name : ' Inspect Code'
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v4
16- - uses : actions/setup-node@v4
15+ - uses : actions/checkout@v6
16+ - uses : actions/setup-node@v6
1717 with :
1818 cache : npm
1919 node-version : lts/iron
2020 - run : npm ci
2121 - run : npm run lint
2222 - run : npm run test -- --coverage
2323 - name : Upload coverage reports to Codecov
24- uses : codecov/codecov-action@v3
24+ uses : codecov/codecov-action@v6
2525 env :
2626 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
2727 node-compatibility :
3131 matrix :
3232 node-version : ['lts/iron', 'lts/jod', '24.x']
3333 steps :
34- - uses : actions/checkout@v4
34+ - uses : actions/checkout@v6
3535 - name : Use Node.js ${{ matrix.node-version }}
36- uses : actions/setup-node@v4
36+ uses : actions/setup-node@v6
3737 with :
3838 cache : npm
3939 node-version : ${{ matrix.node-version }}
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
1414 build :
1515 runs-on : ubuntu-latest
1616 steps :
17- - uses : actions/checkout@v4
18- - uses : actions/setup-node@v4
17+ - uses : actions/checkout@v6
18+ - uses : actions/setup-node@v6
1919 with :
2020 node-version : ' lts/jod'
2121 - run : npm install
2222 - run : npm run generate:docs
23- - uses : actions/upload-pages-artifact@v3
23+ - uses : actions/upload-pages-artifact@v4
2424 with :
2525 path : ./docs
2626 # @see https://github.com/actions/deploy-pages
3333 steps :
3434 - name : Deploy to GitHub Pages
3535 id : deployment
36- uses : actions/deploy-pages@v4
36+ uses : actions/deploy-pages@v5
Original file line number Diff line number Diff line change 11name : Playwright Tests
22on :
33 push :
4- branches : [ main ]
4+ branches : [main]
55 pull_request :
6- branches : [ main ]
6+ branches : [main]
77jobs :
88 test :
99 timeout-minutes : 60
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v4
13- - uses : actions/setup-node@v4
14- with :
15- node-version : lts/*
16- - name : Install dependencies
17- run : npm ci
18- - name : Build Package
19- run : npm run build
20- - name : Install Playwright Browsers
21- run : npx playwright install --with-deps
22- - name : Run Playwright tests
23- run : npx playwright test
24- env :
25- PREVIEW_GLOBUS_ID_USERNAME : ${{ secrets.PREVIEW_GLOBUS_ID_USERNAME }}
26- PREVIEW_GLOBUS_ID_PASSWORD : ${{ secrets.PREVIEW_GLOBUS_ID_PASSWORD }}
27- - uses : actions/upload-artifact@v4
28- if : always()
29- with :
30- name : playwright-report
31- path : playwright-report/
32- retention-days : 30
12+ - uses : actions/checkout@v6
13+ - uses : actions/setup-node@v6
14+ with :
15+ node-version : lts/*
16+ - name : Install dependencies
17+ run : npm ci
18+ - name : Build Package
19+ run : npm run build
20+ - name : Install Playwright Browsers
21+ run : npx playwright install --with-deps
22+ - name : Run Playwright tests
23+ run : npx playwright test
24+ env :
25+ PREVIEW_GLOBUS_ID_USERNAME : ${{ secrets.PREVIEW_GLOBUS_ID_USERNAME }}
26+ PREVIEW_GLOBUS_ID_PASSWORD : ${{ secrets.PREVIEW_GLOBUS_ID_PASSWORD }}
27+ - uses : actions/upload-artifact@v4
28+ if : always()
29+ with :
30+ name : playwright-report
31+ path : playwright-report/
32+ retention-days : 30
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
1515 canary :
1616 runs-on : ubuntu-latest
1717 steps :
18- - uses : actions/checkout@v4
18+ - uses : actions/checkout@v6
1919 with :
2020 fetch-depth : 0
21- - uses : actions/setup-node@v4
21+ - uses : actions/setup-node@v6
2222 with :
2323 node-version : lts/jod
2424 registry-url : ' https://registry.npmjs.org'
6666 if : needs.release-please.outputs.releases_created == 'true'
6767 steps :
6868 # Publish to NPM
69- - uses : actions/checkout@v4
70- - uses : actions/setup-node@v4
69+ - uses : actions/checkout@v6
70+ - uses : actions/setup-node@v6
7171 with :
7272 node-version : lts/jod
7373 registry-url : ' https://registry.npmjs.org'
@@ -110,4 +110,4 @@ jobs:
110110 # ]
111111 # }
112112 # env:
113- # SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
113+ # SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
Original file line number Diff line number Diff line change 1- name : " Generate OpenAPI Types"
1+ name : ' Generate OpenAPI Types'
22
33on :
44 schedule :
1818 contents : write
1919 pull-requests : write
2020 steps :
21- - uses : actions/checkout@v4
22- - uses : actions/setup-node@v4
21+ - uses : actions/checkout@v6
22+ - uses : actions/setup-node@v6
2323 with :
2424 node-version : lts/iron
2525 cache : ' npm'
4444 git push --set-upstream origin bot-openapi-types
4545 - name : Open (Draft) Pull Request
4646 if : ${{ env.changes_exist == 'true' }}
47- uses : actions/github-script@v7
47+ uses : actions/github-script@v8
4848 with :
4949 script : |
5050 const { repo, owner } = context.repo;
You can’t perform that action at this time.
0 commit comments