Skip to content

Commit e17ac1c

Browse files
committed
Fix deprecation errors
1 parent d859190 commit e17ac1c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out the codebase
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Set up Python 3
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v4
2222
with:
2323
python-version: '3.x'
2424

@@ -55,12 +55,12 @@ jobs:
5555

5656
steps:
5757
- name: Check out the codebase
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v3
5959
with:
6060
path: "${{ github.repository }}"
6161

6262
- name: Set up Python 3
63-
uses: actions/setup-python@v2
63+
uses: actions/setup-python@v4
6464
with:
6565
python-version: '3.x'
6666

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out the codebase
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
- name: Publish to Galaxy
1818
uses: robertdebock/galaxy-action@1.2.0

0 commit comments

Comments
 (0)