Skip to content

Commit 5eee38f

Browse files
committed
Updated GitHub actions
1 parent a44a458 commit 5eee38f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/codesee-arch-diagram.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: checkout
1717
id: checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
with:
2020
repository: ${{ github.event.pull_request.head.repo.full_name }}
2121
ref: ${{ github.event.pull_request.head.ref }}
@@ -71,7 +71,7 @@ jobs:
7171
step: mapUpload
7272
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
7373
github_ref: ${{ github.ref }}
74-
74+
7575
- name: Insights
7676
id: insights
7777
uses: Codesee-io/codesee-map-action@latest

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout master
13-
uses: actions/checkout@v1
13+
uses: actions/checkout@v3
1414

1515
- name: Deploy docs
1616
uses: mhausenblas/mkdocs-deploy-gh-pages@master

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Build and publish to Python package repository
1313
uses: JRubics/poetry-publish@v1.13
1414
with:

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
python-version: [3.8, 3.9, '3.10', 'pypy3']
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v3
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies
@@ -37,9 +37,9 @@ jobs:
3737
with:
3838
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
3939
coverage-reports: coverage.xml
40-
- uses: codecov/codecov-action@v1
40+
- uses: codecov/codecov-action@v3
4141
with:
4242
token: ${{ secrets.CODECOV_TOKEN }}
43-
file: ./coverage.xml
43+
files: ./coverage.xml
4444
flags: unittests
4545
verbose: true

0 commit comments

Comments
 (0)