Skip to content

Commit f791434

Browse files
committed
update many action versions
1 parent 8dccf57 commit f791434

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/analyze.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout 🚚
16-
uses: actions/checkout@v3.5.3
16+
uses: actions/checkout@v4.1.1
1717
with:
1818
fetch-depth: 1
1919
- name: Set up Python 🐍
20-
uses: actions/setup-python@v4.7.0
20+
uses: actions/setup-python@v5.0.0
2121
with:
2222
python-version: 3.9
2323
- name: Install dependencies ⚙️
@@ -36,7 +36,7 @@ jobs:
3636
coverage report
3737
coverage xml
3838
- name: Upload reports 📤
39-
uses: actions/upload-artifact@v3.1.2
39+
uses: actions/upload-artifact@v4.3.1
4040
with:
4141
name: reports
4242
path: |
@@ -49,11 +49,11 @@ jobs:
4949
needs: build
5050
steps:
5151
- name: Checkout 🚚
52-
uses: actions/checkout@v3.5.3
52+
uses: actions/checkout@v4.1.1
5353
with:
5454
fetch-depth: 0
5555
- name: Download reports 📥
56-
uses: actions/download-artifact@v2.1.1
56+
uses: actions/download-artifact@v4.1.4
5757
with:
5858
name: reports
5959
- name: SonarCloud Scan ☁️
@@ -67,10 +67,11 @@ jobs:
6767
needs: build
6868
steps:
6969
- name: Download reports 📥
70-
uses: actions/download-artifact@v2.1.1
70+
uses: actions/download-artifact@v4.1.4
7171
with:
7272
name: reports
7373
- name: Upload to Codecov ☂️
7474
uses: codecov/codecov-action@v4.1.0
7575
with:
7676
token: ${{ secrets.CODECOV_TOKEN }}
77+
files: ./coverage.xml

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v1
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v4.5.0
16+
uses: actions/setup-python@v5.0.0
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@master
1414
- name: Set up Python 3.9 🐍
15-
uses: actions/setup-python@v4.5.0
15+
uses: actions/setup-python@v5.0.0
1616
with:
1717
python-version: 3.9
1818
- name: Install dependencies ⚙️

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
restore-keys: |
2222
${{ runner.os }}-buildx-
2323
- name: Checkout 🚚
24-
uses: actions/checkout@v3.5.3
24+
uses: actions/checkout@v4.1.1
2525

2626
- name: Docker Meta 📋
2727
id: meta

.github/workflows/pages_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v1
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v4.5.0
16+
uses: actions/setup-python@v5.0.0
1717
with:
1818
python-version: 3.9
1919

0 commit comments

Comments
 (0)