Skip to content

Commit de50b52

Browse files
Merge branch 'main' into storybook-10
2 parents 73bd6ab + 48b6a6c commit de50b52

6 files changed

Lines changed: 15 additions & 16 deletions

File tree

.github/workflows/build-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
16-
- uses: actions/setup-node@v6
15+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
16+
- uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
1717
with:
1818
node-version: '24.x'
1919
cache: npm
2020
- run: npm install -g npm@11 --registry=https://registry.npmjs.org
2121
- name: Setup Pages
22-
uses: actions/configure-pages@v5
22+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
2323
- run: npm ci
2424
- name: Build docs
2525
run: npm run docs
2626
- name: Upload artifact
27-
uses: actions/upload-pages-artifact@v5
27+
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5
2828
with:
2929
path: ./docs/build
3030

@@ -41,4 +41,4 @@ jobs:
4141
steps:
4242
- name: Deploy to GitHub Pages
4343
id: deployment
44-
uses: actions/deploy-pages@v5
44+
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
contents: read
1313
packages: write
1414
steps:
15-
- uses: actions/checkout@v6
16-
- uses: actions/setup-node@v6
15+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
16+
- uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
1717
with:
1818
node-version: '24.x'
1919
registry-url: 'https://registry.npmjs.org'
@@ -25,7 +25,7 @@ jobs:
2525
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626
- run: npm run ci
2727
- name: Upload GitHub packages artifact
28-
uses: actions/upload-pages-artifact@v5
28+
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5
2929
with:
3030
path: ./storybook-static
3131
- run: npm publish --allow-directory=all

package-lock.json

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
"fsevents": true
1717
},
1818
"packageManager": "npm@11.18.0",
19-
"engines": {
20-
"node": ">=24.0.0",
21-
"npm": ">=11.18.0"
22-
},
2319
"main": "./dist/cjs/index.js",
2420
"module": "./dist/esm/index.js",
2521
"typings": "./dist/esm/index.d.ts",

renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"github>microbit-foundation/renovate"
5+
]
6+
}

src/vanilla/makecode-render-blocks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ function createIframe(
309309
f.style.whiteSpace = 'nowrap';
310310
f.setAttribute('loading', 'eager');
311311
f.setAttribute('aria-hidden', 'true');
312+
f.inert = true;
312313
f.src = src;
313314
document.body.appendChild(f);
314315
return f;

0 commit comments

Comments
 (0)