From 364025ceb1c877acf34c029cb76430433a176959 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 19:10:10 +0000 Subject: [PATCH] Bump the github-action-dependencies group across 1 directory with 5 updates Bumps the github-action-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.1.1` | `4.1.5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.1` | `4.3.3` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.4` | `4.1.7` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `0.1.15` | `2.0.5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5.0.0` | `5.1.0` | Updates `actions/checkout` from 4.1.1 to 4.1.5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.1...v4.1.5) Updates `actions/upload-artifact` from 4.3.1 to 4.3.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.3) Updates `actions/download-artifact` from 4.1.4 to 4.1.7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.7) Updates `softprops/action-gh-release` from 0.1.15 to 2.0.5 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v0.1.15...v2.0.5) Updates `actions/setup-python` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5.0.0...v5.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/node-tests.yml | 2 +- .github/workflows/npm-package.yml | 12 ++++++------ .github/workflows/puppeteer.yml | 6 +++--- .github/workflows/python-package.yml | 14 +++++++------- .github/workflows/python-tests.yml | 4 ++-- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/node-tests.yml b/.github/workflows/node-tests.yml index 331819b61..3eb7a5363 100644 --- a/.github/workflows/node-tests.yml +++ b/.github/workflows/node-tests.yml @@ -24,7 +24,7 @@ jobs: - '21' runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.5 - uses: actions/setup-node@v4.0.2 with: cache: 'npm' diff --git a/.github/workflows/npm-package.yml b/.github/workflows/npm-package.yml index 912904f27..5a65a1851 100644 --- a/.github/workflows/npm-package.yml +++ b/.github/workflows/npm-package.yml @@ -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.5 with: fetch-depth: 0 # npm run prod requires tags, sadly this is the only way to get them. - name: Install Node.js @@ -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 @@ -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 @@ -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: './*' diff --git a/.github/workflows/puppeteer.yml b/.github/workflows/puppeteer.yml index 09a7197c4..543ec2ef0 100644 --- a/.github/workflows/puppeteer.yml +++ b/.github/workflows/puppeteer.yml @@ -25,7 +25,7 @@ jobs: - '3.12' runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.5 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 @@ -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' @@ -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 diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 73c089d12..587a4c011 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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.5 with: fetch-depth: 0 - name: Install Node.js @@ -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' @@ -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 @@ -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 @@ -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: './*' diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index a3aeaf35d..752068f9a 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -26,9 +26,9 @@ jobs: - '3.12' runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.5 - 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'