Skip to content

Commit ef9d853

Browse files
authored
Merge pull request #1135 from dandi/update-actions
Update GitHub Actions action versions
2 parents 6f03b9c + 7ddc3a4 commit ef9d853

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
lines changed

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
commit-message:
8+
prefix: "[gh-actions]"
9+
include: scope
10+
labels:
11+
- internal

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
#- 3.9
1919
steps:
2020
- name: Check out repository
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
# Fetch all commits so that versioneer will return something compatible
2424
# with semantic-version
2525
fetch-depth: 0
2626

2727
- name: Set up Python ${{ matrix.python }}
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: ${{ matrix.python }}
3131

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Set up environment
12-
uses: actions/checkout@v1
12+
uses: actions/checkout@v3
1313
with:
1414
fetch-depth: 0
1515
- name: Set up Python
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: '3.7'
1919
- name: Install dependencies

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
1313
steps:
1414
- name: Checkout source
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
1818

@@ -23,7 +23,7 @@ jobs:
2323
chmod a+x ~/auto
2424
2525
- name: Set up Python
26-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v4
2727
with:
2828
python-version: 3.7
2929

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ jobs:
4949

5050
steps:
5151
- name: Set up environment
52-
uses: actions/checkout@v1
52+
uses: actions/checkout@v3
5353
with:
5454
# Fetch all commits so that versioneer will return something compatible
5555
# with semantic-version
5656
fetch-depth: 0
5757

5858
- name: Set up Python ${{ matrix.python }}
59-
uses: actions/setup-python@v2
59+
uses: actions/setup-python@v4
6060
with:
6161
python-version: ${{ matrix.python }}
6262

@@ -116,7 +116,7 @@ jobs:
116116
down -v
117117
118118
- name: Upload coverage to Codecov
119-
uses: codecov/codecov-action@v2
119+
uses: codecov/codecov-action@v3
120120
with:
121121
token: ${{ secrets.CODECOV_TOKEN }}
122122
file: ./coverage.xml

.github/workflows/typing.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out repository
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313
with:
1414
fetch-depth: 0
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: '3.7'
2020

0 commit comments

Comments
 (0)