Skip to content

Commit e81f45a

Browse files
committed
Point pipelines to the right master branch
1 parent ab8c5e6 commit e81f45a

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Verify
55

66
on:
77
push:
8-
branches: [ "main" ]
8+
branches: [ "master" ]
99
pull_request:
10-
branches: [ "main" ]
10+
branches: [ "master" ]
1111

1212
permissions:
1313
contents: read
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Set up Python 3.10
23-
uses: actions/setup-python@v3
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: "3.10"
2626
- name: Setup environment

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Set up Python
26-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v4
2727
with:
28-
python-version: '3.x'
28+
python-version: '3.10'
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ activate:
3939
# Install packages to current environment
4040
# -------------------------------------------------------------------------------------------------
4141
install:
42+
$(PYTHON) pip install --upgrade pip
4243
$(PYTHON) pip install -e .[dev]
4344

4445
# -------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)