Skip to content

Commit

Permalink
Allow opening a PR against a branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Dec 22, 2024
1 parent 9d6f6a2 commit c3fcb68
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/upgrade-jupyterlab-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,26 +35,25 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
branch: ${{ inputs.branch || 'main' }}

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install required dependencies
run: |
python -m pip install jupyterlab
sudo apt-get install hub
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: '20.x'

- name: Install npm dependencies and build buildutils
run: |
jlpm install
python -m pip install -e ".[dev]"
jlpm
jlpm run build:utils
- name: Check for new releases and update
Expand Down

0 comments on commit c3fcb68

Please sign in to comment.