Skip to content

Commit 1fdaac6

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

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/main.yml

Lines changed: 5 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@v1
2424
with:
2525
python-version: "3.10"
2626
- name: Setup environment
@@ -31,6 +31,7 @@ jobs:
3131
make install
3232
- name: Lint
3333
run: |
34+
python -m pip install --upgrade pip
3435
make lint
3536
- name: Test
3637
run: |

.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@v1
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

0 commit comments

Comments
 (0)