Skip to content

Commit ebdc9d6

Browse files
Merge pull request #628 from Arelle/dependabot/github_actions/github-action-dependencies-f0e9d14934
Bump the github-action-dependencies group with 3 updates
2 parents d6b63d8 + 97663bf commit ebdc9d6

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/node-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- uses: actions/checkout@v4.1.1
28-
- uses: actions/setup-node@v4.0.1
28+
- uses: actions/setup-node@v4.0.2
2929
with:
3030
cache: 'npm'
3131
check-latest: true

.github/workflows/npm-package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
fetch-depth: 0 # npm run prod requires tags, sadly this is the only way to get them.
2929
- name: Install Node.js
30-
uses: actions/setup-node@v4.0.1
30+
uses: actions/setup-node@v4.0.2
3131
with:
3232
cache: 'npm'
3333
check-latest: true
@@ -42,13 +42,13 @@ jobs:
4242
npm version $(git describe --tags)
4343
npm pack
4444
- name: Upload ixbrlviewer.js artifact
45-
uses: actions/upload-artifact@v4.3.0
45+
uses: actions/upload-artifact@v4.3.1
4646
with:
4747
name: ixbrlviewer.js
4848
if-no-files-found: error
4949
path: iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js
5050
- name: Upload npm artifact
51-
uses: actions/upload-artifact@v4.3.0
51+
uses: actions/upload-artifact@v4.3.1
5252
with:
5353
name: npm package
5454
if-no-files-found: error
@@ -63,17 +63,17 @@ jobs:
6363
if: startsWith(github.ref, 'refs/tags')
6464
steps:
6565
- name: Install Node.js
66-
uses: actions/setup-node@v4.0.1
66+
uses: actions/setup-node@v4.0.2
6767
with:
6868
check-latest: true
6969
node-version: ${{ inputs.node_version }}
7070
registry-url: 'https://registry.npmjs.org' # Must explicitly set this for NODE_AUTH_TOKEN to work below
7171
- name: Download ixbrlviewer.js artifact
72-
uses: actions/download-artifact@v4.1.1
72+
uses: actions/download-artifact@v4.1.2
7373
with:
7474
name: ixbrlviewer.js
7575
- name: Download npm artifact
76-
uses: actions/download-artifact@v4.1.1
76+
uses: actions/download-artifact@v4.1.2
7777
with:
7878
name: npm package
7979
- name: Publish with npm

.github/workflows/puppeteer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v4.1.1
2929
with:
3030
fetch-depth: 0 # npm run prod requires tags, sadly this is the only way to get them.
31-
- uses: actions/setup-node@v4.0.1
31+
- uses: actions/setup-node@v4.0.2
3232
with:
3333
cache: 'npm'
3434
check-latest: true
@@ -54,7 +54,7 @@ jobs:
5454
run: npx http-server . &> tests/puppeteer/artifacts/http_server.log &
5555
- name: Run puppeteer tests
5656
run: npm run test:puppeteer
57-
- uses: actions/upload-artifact@v4.3.0
57+
- uses: actions/upload-artifact@v4.3.1
5858
if: failure()
5959
with:
6060
name: ${{ github.run_id }}.${{ github.run_attempt }}_${{ matrix.os }}_${{ matrix.node-version }}_${{ matrix.python-version }}_artifacts

.github/workflows/python-package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
fetch-depth: 0
3939
- name: Install Node.js
40-
uses: actions/setup-node@v4.0.1
40+
uses: actions/setup-node@v4.0.2
4141
with:
4242
cache: 'npm'
4343
check-latest: true
@@ -60,13 +60,13 @@ jobs:
6060
- name: Build Python package
6161
run: python -m build
6262
- name: Upload source distribution artifact
63-
uses: actions/upload-artifact@v4.3.0
63+
uses: actions/upload-artifact@v4.3.1
6464
with:
6565
name: source distribution
6666
if-no-files-found: error
6767
path: dist/*.tar.gz
6868
- name: Upload wheel artifact
69-
uses: actions/upload-artifact@v4.3.0
69+
uses: actions/upload-artifact@v4.3.1
7070
with:
7171
name: wheel
7272
if-no-files-found: error
@@ -83,11 +83,11 @@ jobs:
8383
- name: Install twine
8484
run: pip install -U twine
8585
- name: Download source distribution artifact
86-
uses: actions/download-artifact@v4.1.1
86+
uses: actions/download-artifact@v4.1.2
8787
with:
8888
name: source distribution
8989
- name: Download wheel artifact
90-
uses: actions/download-artifact@v4.1.1
90+
uses: actions/download-artifact@v4.1.2
9191
with:
9292
name: wheel
9393
- name: Publish package on release

0 commit comments

Comments
 (0)