Skip to content

Commit fc940a8

Browse files
authored
update checkout action v2 -> v3 (#98)
Signed-off-by: Grossberger Lukas (CR/AIR2.2) <Lukas.Grossberger@de.bosch.com>
1 parent 1febf88 commit fc940a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-20.04
77
container: python:3.8-slim
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- name: Install dependencies
1111
run: |
1212
pip install poetry
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ["python:3.8", "python:3.9", "python:3.10", "python:3.11"]
3434
container: ${{ matrix.python-version }}-slim
3535
steps:
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
- name: Install dependencies
3838
run: |
3939
pip install poetry
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-20.04
4848
container: python:3.8-slim
4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v3
5151
- name: Install dependencies
5252
run: |
5353
pip install poetry
@@ -62,7 +62,7 @@ jobs:
6262
if: startsWith(github.ref, 'refs/tags/v')
6363
runs-on: ubuntu-20.04
6464
steps:
65-
- uses: actions/checkout@v2
65+
- uses: actions/checkout@v3
6666
with:
6767
fetch-depth: 0 # fetch all branches, incl. gh-pages
6868
- uses: actions/setup-python@v2

0 commit comments

Comments
 (0)