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 gha-dependencies group across 1 directory with 5 updates #254

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
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.7
- uses: actions/checkout@v4.2.0
- name: Install Python
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
Expand Down
16 changes: 8 additions & 8 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.7
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
- name: Checkout EdgarRenderer
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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.7
uses: actions/checkout@v4.2.0
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.6.1
uses: docker/setup-buildx-action@v3.7.1
- name: Docker build
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.9.0
with:
build-args: |
"OPENSSL_VERSION=${{ inputs.openssl_version }}"
Expand All @@ -111,13 +111,13 @@ jobs:
run: |
echo "ARTIFACT_NAME=arelle-ubuntu.tgz" >> $GITHUB_ENV
- name: Upload build artifact
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ steps.define-artifact-names.outputs.uploaded_artifact_name }}
if-no-files-found: error
path: ${{ env.BUILD_ARTIFACT_PATH }}
- name: "[Test] Set up Python ${{ inputs.python_version }}"
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
Expand All @@ -130,7 +130,7 @@ jobs:
pytest -s --disable-warnings --all-frozen-builds --download-cache --offline --arelle=".test_build/arelleCmdLine" tests/integration_tests/scripts/test_scripts.py
- name: "[Test] Upload test artifacts"
if: always()
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: 'linux test logs'
path: '.test/**/*.logfile.xml'
12 changes: 6 additions & 6 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.7
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.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.7
- uses: actions/checkout@v4.2.0
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.7
- uses: actions/checkout@v4.2.0
with:
repository: xbrlus/xule
path: tmp
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
hdiutil detach "${DEVICE}"
hdiutil convert dist_dmg/arelle_tmp.dmg -format UDZO -imagekey zlib-level=9 -o ${{ env.DMG_BUILD_ARTIFACT_PATH }}
- name: Upload build artifact
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ steps.define-artifact-names.outputs.uploaded_artifact_name }}
if-no-files-found: error
Expand All @@ -191,7 +191,7 @@ jobs:
pytest -s --disable-warnings --all-frozen-builds --download-cache --offline --arelle="build/Arelle.app/Contents/MacOS/arelleCmdLine" tests/integration_tests/scripts/test_scripts.py
- name: "[Test] Upload test artifacts"
if: always()
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: 'macos test logs'
path: '.test/**/*.logfile.xml'
14 changes: 7 additions & 7 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.7
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
- name: Checkout EdgarRenderer
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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.7
uses: actions/checkout@v4.2.0
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.1.1
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
Expand Down Expand Up @@ -123,14 +123,14 @@ jobs:
run: 7z a -tzip ..\..\${{ steps.define-artifact-names.outputs.zip_build_artifact_path }} *
- name: Upload installer artifact
id: upload-installer-artifact
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ steps.define-artifact-names.outputs.exe_uploaded_artifact_name }}
if-no-files-found: error
path: ${{ steps.define-artifact-names.outputs.exe_build_artifact_path }}
- name: Upload zip artifact
id: upload-zip-artifact
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ steps.define-artifact-names.outputs.zip_uploaded_artifact_name }}
if-no-files-found: error
Expand All @@ -141,7 +141,7 @@ jobs:
pytest -s --disable-warnings --all-frozen-builds --download-cache --offline --arelle="${{ env.BUILD_PATH }}\arelleCmdLine.exe" tests/integration_tests/scripts/test_scripts.py
- name: "[Test] Upload test artifacts"
if: always()
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: 'windows test logs'
path: '.test/**/*.logfile.xml'
2 changes: 1 addition & 1 deletion .github/workflows/conformance-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ${{ inputs.os }}
environment: ${{ inputs.environment }}
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
with:
persist-credentials: false
- name: Configure AWS Credentials
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/conformance-suites.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
outputs:
matrix: ${{ steps.build-test-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
Expand All @@ -40,7 +40,7 @@ jobs:
test: ${{ fromJson(needs.find-tests.outputs.matrix) }}
environment: ${{ matrix.test.environment }}
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
8 changes: 4 additions & 4 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.7
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
Expand All @@ -38,13 +38,13 @@ jobs:
pip install build
python -m build
- name: Upload tar artifact
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: arelle.tar.gz
if-no-files-found: error
path: dist/*.tar.gz
- name: Upload wheel artifact
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: arelle.whl
if-no-files-found: error
Expand Down
8 changes: 4 additions & 4 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.7
- uses: actions/checkout@v4.2.0
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.7
- uses: actions/checkout@v4.2.0
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.1.1
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
Expand All @@ -59,7 +59,7 @@ jobs:
pytest -s --disable-warnings --name="${{ matrix.name }}" --download-cache --offline --arelle="python arelleCmdLine.py" tests/integration_tests/scripts/test_scripts.py
- name: Upload test artifacts
if: always()
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ matrix.name }}_${{ matrix.os }}_${{ matrix.python-version }}_logs
path: '.test/**/*.logfile.*'
6 changes: 3 additions & 3 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.7
- uses: actions/checkout@v4.2.0
- name: Install Python 3
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
Expand All @@ -48,7 +48,7 @@ jobs:
pytest -s --disable-warnings --all --download-cache --offline --arelle="python arelleCmdLine.py" tests/integration_tests/scripts/test_scripts.py
- name: Upload log artifacts
if: always()
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ matrix.os }}_${{ matrix.python-version }}_logs
path: '.test/**/*.logfile.*'
10 changes: 5 additions & 5 deletions .github/workflows/test-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ 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.7
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
- name: Download installer artifact
Expand All @@ -78,7 +78,7 @@ jobs:

- name: Install Python
if: matrix.build-type == 'source'
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
Expand Down Expand Up @@ -118,21 +118,21 @@ jobs:

- name: Upload logs
if: always()
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: logs-${{ matrix.build-type }}
path: 'c:\temp\testsmedia\*.txt'
- name: Upload screenshots
# screenshots are only taken on test failure
if: failure()
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: screenshots-${{ matrix.build-type }}
path: 'c:\temp\testsmedia\*.png'
- name: Upload videos
# videos are only saved on test failure
if: failure()
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4.4.0
with:
name: videos-${{ matrix.build-type }}
path: 'c:\temp\testsmedia\*.avi'
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.7
- uses: actions/checkout@v4.2.0
- name: Install Python 3
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
Expand Down
Loading