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

MAINT - Upgrade GH actions #38

Merged
merged 2 commits into from
Feb 8, 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
8 changes: 7 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Fixes # .

<!-- Reference the issue corresponding to this PR. If an issues does not exist, consider opening one or writing a detailed description for what this PR changes and it's value in the following sections. -->
<!-- Reference the issue corresponding to this PR. If an issue does not exist,
consider opening one or writing a detailed description of what this PR changes
and its value in the following sections. -->
<!-- GitHub Docs on Keywords: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests -->

## Description
Expand All @@ -24,3 +26,7 @@ This pull request:
## Additional information

<!-- Do you have any other information about this pull request? This may include screenshots, references, and/or implementation notes. -->

## How to test

<!-- Please add any relevant details to test this functionality even if you added automated tests -->
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: 'Install dependencies 📦'
run: python -m pip install -U jupyterlab~=3.1
run: python -m pip install -U "jupyterlab<4"

- name: 'Lint the extension 🧹'
run: |
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
uses: actions/checkout@v4

- name: 'Install Python 🐍'
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
architecture: 'x64'
Expand All @@ -85,7 +85,7 @@ jobs:
sudo rm -rf $(which node)
sudo rm -rf $(which node)

pip install "jupyterlab~=3.1" jupyterlab_conda_store*.whl
pip install "jupyterlab<4" jupyterlab_conda_store*.whl


jupyter labextension list
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
run: jlpm install

- name: 'Set up browser cache'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/pw-browsers
Expand Down
60 changes: 0 additions & 60 deletions .github/workflows/check-release.yml

This file was deleted.

Loading