Skip to content

Commit a030f96

Browse files
committed
ci: Upgrade actions. Add dependabot.yml.
1 parent 6b270a9 commit a030f96

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
os: [macos-latest, windows-latest, ubuntu-latest]
1010
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', pypy-3.9]
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: actions/setup-python@v4
1414
with:
1515
python-version: ${{ matrix.python-version }}

.github/workflows/dependabot.yml

+6
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: "daily"

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@v4
99
- uses: actions/setup-python@v4
1010
with:
1111
python-version: '3.10'

.github/workflows/pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
7+
- uses: actions/checkout@v4
88
- uses: actions/setup-python@v4
99
with:
1010
python-version: '3.10'

0 commit comments

Comments
 (0)