mirror of
https://github.com/jupyterlite/jupyterlite.git
synced 2025-09-06 12:43:13 +00:00
Bump the actions group with 2 updates (#1717)
Some checks are pending
Build / build (push) Waiting to run
Build / lint (push) Waiting to run
Build / integrity (push) Waiting to run
Build / typedoc (push) Waiting to run
Build / test (macos, ~/Library/Caches/pip, ["-k", "not _archive_is_"], python3, pypy-3.9) (push) Blocked by required conditions
Build / test (macos, ~/Library/Caches/pip, [], python3, 3.13) (push) Blocked by required conditions
Build / test (macos, ~/Library/Caches/pip, [], python3, 3.9) (push) Blocked by required conditions
Build / test (ubuntu, ~/.cache/pip, ["-k", "not _archive_is_"], python3, pypy-3.9) (push) Blocked by required conditions
Build / test (ubuntu, ~/.cache/pip, [], python3, 3.13) (push) Blocked by required conditions
Build / test (ubuntu, ~/.cache/pip, [], python3, 3.9) (push) Blocked by required conditions
Build / test (windows, ~\AppData\Local\pip\Cache, [], python, 3.13) (push) Blocked by required conditions
Build / test (windows, ~\AppData\Local\pip\Cache, [], python, 3.9) (push) Blocked by required conditions
Build / docs (push) Blocked by required conditions
Check Release / check_release (push) Waiting to run
UI Tests / Build (push) Waiting to run
UI Tests / Visual Regression (chromium) (push) Blocked by required conditions
UI Tests / Visual Regression (firefox) (push) Blocked by required conditions
Windows Dev / win-dev (push) Waiting to run
Some checks are pending
Build / build (push) Waiting to run
Build / lint (push) Waiting to run
Build / integrity (push) Waiting to run
Build / typedoc (push) Waiting to run
Build / test (macos, ~/Library/Caches/pip, ["-k", "not _archive_is_"], python3, pypy-3.9) (push) Blocked by required conditions
Build / test (macos, ~/Library/Caches/pip, [], python3, 3.13) (push) Blocked by required conditions
Build / test (macos, ~/Library/Caches/pip, [], python3, 3.9) (push) Blocked by required conditions
Build / test (ubuntu, ~/.cache/pip, ["-k", "not _archive_is_"], python3, pypy-3.9) (push) Blocked by required conditions
Build / test (ubuntu, ~/.cache/pip, [], python3, 3.13) (push) Blocked by required conditions
Build / test (ubuntu, ~/.cache/pip, [], python3, 3.9) (push) Blocked by required conditions
Build / test (windows, ~\AppData\Local\pip\Cache, [], python, 3.13) (push) Blocked by required conditions
Build / test (windows, ~\AppData\Local\pip\Cache, [], python, 3.9) (push) Blocked by required conditions
Build / docs (push) Blocked by required conditions
Check Release / check_release (push) Waiting to run
UI Tests / Build (push) Waiting to run
UI Tests / Visual Regression (chromium) (push) Blocked by required conditions
UI Tests / Visual Regression (firefox) (push) Blocked by required conditions
Windows Dev / win-dev (push) Waiting to run
Bumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 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...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
@@ -18,7 +18,7 @@ jobs:
|
||||
BUILDING_IN_CI: 1
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Build dist
|
||||
uses: ./.github/actions/build-dist
|
||||
@@ -33,7 +33,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
|
||||
- name: Cache (pip)
|
||||
uses: actions/cache@v4
|
||||
@@ -55,7 +55,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
@@ -70,7 +70,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
@@ -120,14 +120,14 @@ jobs:
|
||||
python-version: pypy-3.9
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Setup pip (base)
|
||||
run: ${{ matrix.python-command }} -m pip install --user -U pip setuptools wheel
|
||||
- name: Download (dist)
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: jupyterlite dist ${{ github.run_number }}
|
||||
path: ./dist
|
||||
@@ -192,14 +192,14 @@ jobs:
|
||||
DOCS_IN_CI: 1
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
- name: Download (dist)
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: jupyterlite dist ${{ github.run_number }}
|
||||
path: ./dist
|
||||
- name: Download (typedoc)
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: jupyterlite typedoc ${{ github.run_number }}
|
||||
path: ./docs/reference/api/ts
|
||||
|
2
.github/workflows/check-release.yml
vendored
2
.github/workflows/check-release.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Base Setup
|
||||
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
|
||||
|
2
.github/workflows/playwright-update.yml
vendored
2
.github/workflows/playwright-update.yml
vendored
@@ -31,7 +31,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Get PR Info
|
||||
id: pr
|
||||
|
6
.github/workflows/ui-tests.yml
vendored
6
.github/workflows/ui-tests.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Build dist
|
||||
uses: ./.github/actions/build-dist
|
||||
@@ -49,9 +49,9 @@ jobs:
|
||||
browser: [firefox, chromium]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: jupyterlite-ui-tests-app-${{ github.run_number }}
|
||||
path: ./ui-tests/ui-tests-app
|
||||
|
2
.github/workflows/win-dev.yml
vendored
2
.github/workflows/win-dev.yml
vendored
@@ -26,7 +26,7 @@ jobs:
|
||||
git config --global core.autocrlf false
|
||||
git config --global core.eol lf
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
- uses: mamba-org/setup-micromamba@v2
|
||||
with:
|
||||
micromamba-version: '1.5.1-0'
|
||||
|
Reference in New Issue
Block a user