Skip to content

Commit 0f4762a

Browse files
Merge pull request #26 from the-virtual-brain/cleanup
Cleanup: migrate github actions to v3
2 parents ea88ed7 + 14c7bd7 commit 0f4762a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7373
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
7474

75-
- uses: actions/upload-artifact@v2
75+
- uses: actions/upload-artifact@v3
7676
with:
7777
name: myextension-sdist
7878
path: myextension.tar.gz
@@ -83,13 +83,13 @@ jobs:
8383

8484
steps:
8585
- name: Checkout
86-
uses: actions/checkout@v2
86+
uses: actions/checkout@v3
8787
- name: Install Python
88-
uses: actions/setup-python@v2
88+
uses: actions/setup-python@v3
8989
with:
9090
python-version: '3.8'
9191
architecture: 'x64'
92-
- uses: actions/download-artifact@v2
92+
- uses: actions/download-artifact@v3
9393
with:
9494
name: myextension-sdist
9595
- name: Install and Test

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313

1414
- name: Install dependencies
1515
run: |

0 commit comments

Comments
 (0)