Skip to content

Commit e888cc8

Browse files
committed
updated all actions
1 parent 54dd47a commit e888cc8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python-version: ["3.6"]
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
- name: Setup Conda Environment
2727
uses: conda-incubator/setup-miniconda@v2
2828
with:

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: "3.12"
2828

2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3131
- name: Setup Conda Environment
3232
uses: conda-incubator/setup-miniconda@v2
3333
with:

.github/workflows/lint_python.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ jobs:
44
lint_python:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
8-
- uses: actions/setup-python@v2
7+
- uses: actions/checkout@v3
8+
- uses: actions/setup-python@v4
99
- run: pip install bandit codespell flake8 velin
1010
- run: bandit --recursive --skip B101,B110 .
1111
- run: codespell resampy

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@master
13+
- uses: actions/checkout@v3
1414
- name: Set up Python 3.7
15-
uses: actions/setup-python@v1
15+
uses: actions/setup-python@v4
1616
with:
1717
python-version: 3.7
1818

0 commit comments

Comments
 (0)