File tree Expand file tree Collapse file tree 9 files changed +17
-16
lines changed
Expand file tree Collapse file tree 9 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 2121 cache : ' yarn'
2222
2323 - name : Install
24- run : yarn --frozen-lockfile
24+ run : yarn --immutable
2525
2626 - name : Build
2727 run : yarn ci:testbuild
Original file line number Diff line number Diff line change @@ -80,12 +80,14 @@ jobs:
8080
8181 if (pr.state !== 'open') {
8282 console.log(`PR #${pr.number} was closed during build, skipping deployment`);
83- core.setOutput('should_deploy', 'false');
83+ const fs = require('fs');
84+ fs.appendFileSync(process.env.GITHUB_OUTPUT, `should_deploy=false\n`);
8485 return;
8586 }
8687
8788 console.log(`PR #${pr.number} is still open, proceeding with deployment`);
88- core.setOutput('should_deploy', 'true');
89+ const fs = require('fs');
90+ fs.appendFileSync(process.env.GITHUB_OUTPUT, `should_deploy=true\n`);
8991
9092 - name : Config Netlify CORS
9193 if : steps.final-pr-check.outputs.should_deploy == 'true'
Original file line number Diff line number Diff line change 4545 yarn ci:deploy:nightly
4646
4747 - name : Deploy
48- uses : JamesIves/github-pages-deploy-action@v4.3.3
48+ uses : JamesIves/github-pages-deploy-action@v4.7.6
4949 with :
5050 branch : gh-pages # The branch the action should deploy to.
5151 folder : packages/website/build # The folder the action should deploy.
7979 yarn ci:deploy
8080
8181 - name : Deploy
82- uses : JamesIves/github-pages-deploy-action@v4.3.3
82+ uses : JamesIves/github-pages-deploy-action@v4.7.6
8383 with :
8484 branch : gh-pages # The branch the action should deploy to.
8585 folder : packages/website/build # The folder the action should deploy.
Original file line number Diff line number Diff line change 88 stale :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/stale@v5
11+ - uses : actions/stale@v9
1212 with :
1313 # The number of days old an issue can be before marking it stale.
1414 days-before-stale : 21
Original file line number Diff line number Diff line change 2828 // Allowed bots
2929 const isSystemUser = ['ui5-webcomponents-bot', 'github-actions[bot]'].includes(commenter);
3030
31- core.setOutput('shouldReopen', !isSystemUser && commentAt > closedAt);
31+ const fs = require('fs');
32+ fs.appendFileSync(process.env.GITHUB_OUTPUT, `shouldReopen=${!isSystemUser && commentAt > closedAt}\n`);
3233
3334 - name : Reopen Issue
3435 if : steps.check.outputs.shouldReopen == 'true'
Original file line number Diff line number Diff line change 1717 cache : ' yarn'
1818
1919 - name : Install Dependencies
20- run : yarn --frozen-lockfile
20+ run : yarn --immutable
2121
2222 - name : Lint
2323 run : yarn ci:lint
Original file line number Diff line number Diff line change 2626 cache : ' yarn'
2727
2828 - name : Install
29- run : yarn --frozen-lockfile
29+ run : yarn --immutable
3030
3131 - name : Version Bump
3232 env :
Original file line number Diff line number Diff line change 4848 cache : ' yarn'
4949
5050 - name : Install Dependencies
51- run : yarn --frozen-lockfile
51+ run : yarn --immutable
5252
5353 - name : Build
5454 run : yarn ci:releasebuild
@@ -132,7 +132,7 @@ jobs:
132132 cache : ' yarn'
133133
134134 - name : Install Dependencies
135- run : yarn --frozen-lockfile
135+ run : yarn --immutable
136136
137137 - name : Build
138138 run : yarn ci:releasebuild
@@ -200,7 +200,7 @@ jobs:
200200 cache : ' yarn'
201201
202202 - name : Install Dependencies
203- run : yarn --frozen-lockfile
203+ run : yarn --immutable
204204
205205 - name : Build
206206 run : yarn ci:releasebuild
@@ -244,7 +244,7 @@ jobs:
244244 cache : ' yarn'
245245
246246 - name : Install Dependencies
247- run : yarn --frozen-lockfile
247+ run : yarn --immutable
248248
249249 - name : Build
250250 run : yarn ci:releasebuild
Original file line number Diff line number Diff line change @@ -277,9 +277,7 @@ abstract class UI5Element extends HTMLElement {
277277 }
278278
279279 /**
280- * Returns a unique ID for this UI5 Element
281- *
282- * @deprecated - This property is not guaranteed in future releases
280+ * Returns a unique ID for this UI5 Element.
283281 * @protected
284282 */
285283 get _id ( ) {
You can’t perform that action at this time.
0 commit comments