Skip to content
This repository was archived by the owner on May 26, 2025. It is now read-only.

Commit ef6c4c3

Browse files
authored
add dependabot.yml and update actions versions (#29)
1 parent 21b02ca commit ef6c4c3

File tree

4 files changed

+19
-13
lines changed

4 files changed

+19
-13
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/main.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
os: [ubuntu-latest]
2323
runs-on: ${{ matrix.os }}
2424
steps:
25-
- uses: actions/checkout@v2
26-
- uses: actions/setup-python@v2
25+
- uses: actions/checkout@v3
26+
- uses: actions/setup-python@v4
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install project
@@ -40,16 +40,16 @@ jobs:
4040
os: [ubuntu-latest]
4141
runs-on: ${{ matrix.os }}
4242
steps:
43-
- uses: actions/checkout@v2
44-
- uses: actions/setup-python@v2
43+
- uses: actions/checkout@v3
44+
- uses: actions/setup-python@v4
4545
with:
4646
python-version: ${{ matrix.python-version }}
4747
- name: Install project
4848
run: make install
4949
- name: Run tests
5050
run: make test
5151
- name: "Upload coverage to Codecov"
52-
uses: codecov/codecov-action@v1
52+
uses: codecov/codecov-action@v3
5353
# with:
5454
# fail_ci_if_error: true
5555

@@ -62,8 +62,8 @@ jobs:
6262
os: [macos-latest]
6363
runs-on: ${{ matrix.os }}
6464
steps:
65-
- uses: actions/checkout@v2
66-
- uses: actions/setup-python@v2
65+
- uses: actions/checkout@v3
66+
- uses: actions/setup-python@v4
6767
with:
6868
python-version: ${{ matrix.python-version }}
6969
- name: Install project
@@ -80,8 +80,8 @@ jobs:
8080
os: [windows-latest]
8181
runs-on: ${{ matrix.os }}
8282
steps:
83-
- uses: actions/checkout@v2
84-
- uses: actions/setup-python@v2
83+
- uses: actions/checkout@v3
84+
- uses: actions/setup-python@v4
8585
with:
8686
python-version: ${{ matrix.python-version }}
8787
- name: Install Pip

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
permissions:
1717
contents: write
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
with:
2121
# by default, it uses a depth of 1
2222
# this fetches all history so that we can read each commit
@@ -32,9 +32,9 @@ jobs:
3232
needs: release
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v1
35+
- uses: actions/checkout@v3
3636
- name: Set up Python
37-
uses: actions/setup-python@v1
37+
uses: actions/setup-python@v4
3838
with:
3939
python-version: '3.x'
4040
- name: Install dependencies

.github/workflows/rename_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: ${{ !contains (github.repository, '/python-project-template') }}
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
with:
1414
# by default, it uses a depth of 1
1515
# this fetches all history so that we can read each commit

0 commit comments

Comments
 (0)