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

Update CI Env #727

Merged
merged 3 commits into from
Sep 4, 2024
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/node-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
fail-fast: false
matrix:
os:
- macos-12
- ubuntu-22.04
- macos-14
- ubuntu-24.04
- windows-2022
node-version:
- '18'
- '20'
- '21'
- '22'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/npm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
workflow_call:
inputs:
node_version:
default: '20'
default: '22'
description: 'Node version to use'
required: false
type: string
workflow_dispatch:
inputs:
node_version:
default: '20'
default: '22'
description: 'Node version to use'
required: true
type: string
Expand All @@ -20,7 +20,7 @@ permissions: {}

jobs:
build-package:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout ixbrl-viewer
uses: actions/[email protected]
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
environment: release
permissions:
contents: write
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: startsWith(github.ref, 'refs/tags')
steps:
- name: Install Node.js
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/puppeteer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
fail-fast: false
matrix:
os:
- macos-12
- ubuntu-22.04
- macos-14
- ubuntu-24.04
- windows-2022
node-version:
- '18'
- '20'
- '21'
- '22'
python-version:
- '3.12'
runs-on: ${{ matrix.os }}
Expand All @@ -42,6 +42,15 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: npm ci
- name: Setup Chromium Sandbox
if: runner.os == 'Linux'
shell: bash
run: |
cd ~/.cache/puppeteer/chrome/linux-*/chrome-linux64
sudo chown root:root chrome_sandbox
sudo chmod 4755 chrome_sandbox
sudo cp -p chrome_sandbox /usr/local/sbin/chrome-devel-sandbox
echo "CHROME_DEVEL_SANDBOX=/usr/local/sbin/chrome-devel-sandbox" >> $GITHUB_ENV
- name: Install Arelle
run: pip install .[arelle]
- name: Build viewer js
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 @@ -4,7 +4,7 @@ on:
workflow_call:
inputs:
node_version:
default: '20'
default: '22'
description: 'Node version to use'
required: false
type: string
Expand All @@ -16,7 +16,7 @@ on:
workflow_dispatch:
inputs:
node_version:
default: '20'
default: '22'
description: 'Node version to use'
required: true
type: string
Expand All @@ -30,7 +30,7 @@ permissions: {}

jobs:
build-package:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout ixbrl-viewer
uses: actions/[email protected]
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
environment: release
permissions:
contents: write
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: startsWith(github.ref, 'refs/tags')
steps:
- name: Install twine
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
fail-fast: false
matrix:
os:
- macos-12
- ubuntu-22.04
- macos-14
- ubuntu-24.04
- windows-2022
python-version:
- '3.8'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: {}

jobs:
update_release_draft:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write
pull-requests: read
Expand Down
Loading