Skip to content

Commit

Permalink
Bump the dependencies group with 7 updates
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `4.1.1` | `4.1.2` |
| [actions/setup-python](https://github.com/actions/setup-python) | `5.0.0` | `5.1.0` |
| [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.0.0` | `3.3.0` |
| [docker/build-push-action](https://github.com/docker/build-push-action) | `5.1.0` | `5.3.0` |
| [actions/add-to-project](https://github.com/actions/add-to-project) | `0.5.0` | `1.0.0` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.2` | `4.1.4` |
| [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `0.1.15` | `2.0.4` |


Updates `actions/checkout` from 4.1.1 to 4.1.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.1...v4.1.2)

Updates `actions/setup-python` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5.0.0...v5.1.0)

Updates `docker/setup-buildx-action` from 3.0.0 to 3.3.0
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](docker/setup-buildx-action@v3.0.0...v3.3.0)

Updates `docker/build-push-action` from 5.1.0 to 5.3.0
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v5.1.0...v5.3.0)

Updates `actions/add-to-project` from 0.5.0 to 1.0.0
- [Release notes](https://github.com/actions/add-to-project/releases)
- [Commits](actions/add-to-project@v0.5.0...v1.0.0)

Updates `actions/download-artifact` from 4.1.2 to 4.1.4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4.1.2...v4.1.4)

Updates `softprops/action-gh-release` from 0.1.15 to 2.0.4
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](softprops/action-gh-release@v0.1.15...v2.0.4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: docker/setup-buildx-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: actions/add-to-project
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: softprops/action-gh-release
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Apr 8, 2024
1 parent 11f51d3 commit 618fa4c
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 39 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
build-documentation:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
- name: Install Python
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ jobs:

steps:
- name: Checkout arelle
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
- name: Checkout EdgarRenderer
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
repository: Arelle/EdgarRenderer
path: arelle/plugin/EdgarRenderer
ref: ${{ inputs.edgar_renderer_ref }}
- name: Cleanup EdgarRenderer
run: rm -rf arelle/plugin/EdgarRenderer/.git
- name: Checkout XULE
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
repository: xbrlus/xule
path: xule
Expand All @@ -85,9 +85,9 @@ jobs:
- name: Cleanup XULE
run: rm -rf xule
- name: Docker setup buildx
uses: docker/setup-buildx-action@v3.0.0
uses: docker/setup-buildx-action@v3.3.0
- name: Docker build
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v5.3.0
with:
build-args: |
"OPENSSL_VERSION=${{ inputs.openssl_version }}"
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
if-no-files-found: error
path: ${{ env.BUILD_ARTIFACT_PATH }}
- name: "[Test] Set up Python ${{ inputs.python_version }}"
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,25 +61,25 @@ jobs:

steps:
- name: Checkout arelle
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
python-version: ${{ inputs.python_version }}
- run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements-build.txt
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
with:
repository: Arelle/EdgarRenderer
path: arelle/plugin/EdgarRenderer
ref: ${{ inputs.edgar_renderer_ref }}
- run: rm -rf arelle/plugin/EdgarRenderer/.git
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
with:
repository: xbrlus/xule
path: tmp
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ jobs:

steps:
- name: Checkout arelle
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
- name: Checkout EdgarRenderer
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
repository: Arelle/EdgarRenderer
path: arelle/plugin/EdgarRenderer
ref: ${{ inputs.edgar_renderer_ref }}
- shell: cmd
run: rmdir /s /q arelle\plugin\EdgarRenderer\.git
- name: Checkout xule
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
repository: xbrlus/xule
path: xule
Expand All @@ -85,7 +85,7 @@ jobs:
- shell: cmd
run: rmdir /s /q xule
- name: Set up Python ${{ inputs.python_version }}
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/conformance-suites.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix: ${{ steps.build-test-matrix.outputs.matrix }}
environment: integration-tests
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
Expand Down Expand Up @@ -48,19 +48,19 @@ jobs:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: us-east-1
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Checkout EdgarRenderer
if: ${{ matrix.test.name == 'efm_current' }}
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
repository: Arelle/EdgarRenderer
path: arelle/plugin/EdgarRenderer
- name: Install Python 3
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: PR
runs-on: ubuntu-22.04
steps:
- uses: actions/add-to-project@v0.5.0
- uses: actions/add-to-project@v1.0.0
with:
project-url: ${{ env.PROJECT_URL }}
github-token: ${{ secrets.PROJECT_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/publish-frozen-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v4.1.2
uses: actions/download-artifact@v4.1.4
with:
name: ${{ inputs.github_artifact }}

- name: Upload build to release
uses: softprops/action-gh-release@v0.1.15
uses: softprops/action-gh-release@v2.0.4
with:
fail_on_unmatched_files: true
files: ${{ inputs.build_name }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout arelle
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down Expand Up @@ -61,11 +61,11 @@ jobs:
- name: Install twine
run: pip install -U twine
- name: Download tar artifact
uses: actions/download-artifact@v4.1.2
uses: actions/download-artifact@v4.1.4
with:
name: arelle.tar.gz
- name: Download wheel artifact
uses: actions/download-artifact@v4.1.2
uses: actions/download-artifact@v4.1.4
with:
name: arelle.whl
- name: Publish package on release
Expand All @@ -75,7 +75,7 @@ jobs:
TWINE_REPOSITORY: ${{ github.repository == 'Arelle/Arelle' && 'pypi' || 'testpypi' }}
run: twine upload ./*
- name: Upload release artifact
uses: softprops/action-gh-release@v0.1.15
uses: softprops/action-gh-release@v2.0.4
with:
fail_on_unmatched_files: true
files: './*'
6 changes: 3 additions & 3 deletions .github/workflows/test-scripts-parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
names: ${{ steps.get-test-names.outputs.names }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
Expand All @@ -38,13 +38,13 @@ jobs:
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Install Python 3
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
- name: Install Python 3
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@ jobs:
zip_uploaded_artifact_name: ${{ github.event_name == 'pull_request' && needs.build-windows-pr.outputs.zip_uploaded_artifact_name || needs.build-windows-dispatch.outputs.zip_uploaded_artifact_name }}
steps:
- name: Checkout arelle
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
- name: Download installer artifact
if: matrix.build-type == 'installer'
uses: actions/download-artifact@v4.1.2
uses: actions/download-artifact@v4.1.4
with:
name: ${{ env.exe_uploaded_artifact_name }}
- name: Download ZIP artifact
if: matrix.build-type == 'zip'
uses: actions/download-artifact@v4.1.2
uses: actions/download-artifact@v4.1.4
with:
name: ${{ env.zip_uploaded_artifact_name }}

Expand All @@ -78,7 +78,7 @@ jobs:

- name: Install Python
if: matrix.build-type == 'source'
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/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.2
- name: Install Python 3
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
check-latest: true
Expand Down

0 comments on commit 618fa4c

Please sign in to comment.