Skip to content

Commit 602d66e

Browse files
authored
Bump action versions (#377)
1 parent b858685 commit 602d66e

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/dependabot.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
target-branch: "master"
38
- package-ecosystem: "pip"
49
directory: "/"
510
schedule:

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
steps:
1919
- name: Clone Repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Set up Poetry
26-
uses: abatilo/actions-poetry@v2.2.0
26+
uses: abatilo/actions-poetry@v3.0.0
2727
with:
28-
poetry-version: 1.3.2
28+
poetry-version: 1.7.1
2929
- name: Run Tests
3030
run: make run_tests
3131
- name: Upload Coverage
32-
uses: codecov/codecov-action@v1
32+
uses: codecov/codecov-action@v4.1.0
3333

3434
publish:
3535
needs: test
@@ -44,7 +44,7 @@ jobs:
4444
contents: write # needed for github actions bot to write to repo
4545
steps:
4646
- name: Clone Repository
47-
uses: actions/checkout@v2
47+
uses: actions/checkout@v4
4848
with:
4949
ref: ${{ github.ref }}
5050
fetch-depth: 0

0 commit comments

Comments
 (0)