Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the github-action-dependencies group across 1 directory with 5 updates #126

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- '21'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.6
- uses: actions/setup-node@v4.0.2
with:
cache: 'npm'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/npm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout ixbrl-viewer
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.6
with:
fetch-depth: 0 # npm run prod requires tags, sadly this is the only way to get them.
- name: Install Node.js
Expand All @@ -42,13 +42,13 @@ jobs:
npm version $(git describe --tags)
npm pack
- name: Upload ixbrlviewer.js artifact
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: ixbrlviewer.js
if-no-files-found: error
path: iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js
- name: Upload npm artifact
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: npm package
if-no-files-found: error
Expand All @@ -69,11 +69,11 @@ jobs:
node-version: ${{ inputs.node_version }}
registry-url: 'https://registry.npmjs.org' # Must explicitly set this for NODE_AUTH_TOKEN to work below
- name: Download ixbrlviewer.js artifact
uses: actions/download-artifact@v4.1.4
uses: actions/download-artifact@v4.1.7
with:
name: ixbrlviewer.js
- name: Download npm artifact
uses: actions/download-artifact@v4.1.4
uses: actions/download-artifact@v4.1.7
with:
name: npm package
- name: Publish with npm
Expand All @@ -83,7 +83,7 @@ jobs:
NPM_CONFIG_DRY_RUN: ${{ github.repository != 'Arelle/ixbrl-viewer' }}
run: npm publish ixbrl-viewer-*.tgz --access public
- name: Upload release artifacts
uses: softprops/action-gh-release@v0.1.15
uses: softprops/action-gh-release@v2.0.5
with:
fail_on_unmatched_files: true
files: './*'
6 changes: 3 additions & 3 deletions .github/workflows/puppeteer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- '3.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.6
with:
fetch-depth: 0 # npm run prod requires tags, sadly this is the only way to get them.
- uses: actions/setup-node@v4.0.2
Expand All @@ -34,7 +34,7 @@ jobs:
check-latest: true
node-version: ${{ matrix.node-version }}
- name: Install Python 3
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
Expand All @@ -54,7 +54,7 @@ jobs:
run: npx http-server . &> tests/puppeteer/artifacts/http_server.log &
- name: Run puppeteer tests
run: npm run test:puppeteer
- uses: actions/upload-artifact@v4.3.1
- uses: actions/upload-artifact@v4.3.3
if: failure()
with:
name: ${{ github.run_id }}.${{ github.run_attempt }}_${{ matrix.os }}_${{ matrix.node-version }}_${{ matrix.python-version }}_artifacts
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout ixbrl-viewer
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.6
with:
fetch-depth: 0
- name: Install Node.js
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Build ixbrlviewer.js
run: make prod
- name: Install Python
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
Expand All @@ -60,13 +60,13 @@ jobs:
- name: Build Python package
run: python -m build
- name: Upload source distribution artifact
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: source distribution
if-no-files-found: error
path: dist/*.tar.gz
- name: Upload wheel artifact
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: wheel
if-no-files-found: error
Expand All @@ -83,11 +83,11 @@ jobs:
- name: Install twine
run: pip install -U twine
- name: Download source distribution artifact
uses: actions/download-artifact@v4.1.4
uses: actions/download-artifact@v4.1.7
with:
name: source distribution
- name: Download wheel artifact
uses: actions/download-artifact@v4.1.4
uses: actions/download-artifact@v4.1.7
with:
name: wheel
- name: Publish package on release
Expand All @@ -97,7 +97,7 @@ jobs:
TWINE_REPOSITORY: ${{ github.repository == 'Arelle/ixbrl-viewer' && 'pypi' || 'testpypi' }}
run: twine upload ./*
- name: Upload release artifacts
uses: softprops/action-gh-release@v0.1.15
uses: softprops/action-gh-release@v2.0.5
with:
fail_on_unmatched_files: true
files: './*'
4 changes: 2 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- '3.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.6
- name: Install Python 3
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
Expand Down
Loading