@@ -10,14 +10,14 @@ jobs:
1010 continue-on-error : true
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v5
13+ - uses : actions/checkout@v6
1414 - run : |
1515 curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash
1616 fossa analyze --debug
1717 fossa report attribution --format text > /tmp/THIRDPARTY
1818 env:
1919 FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
20- - uses : actions/upload-artifact@v4
20+ - uses : actions/upload-artifact@v5
2121 with :
2222 name : THIRDPARTY
2323 path : /tmp/THIRDPARTY
@@ -28,10 +28,10 @@ jobs:
2828 pre-commit :
2929 runs-on : ubuntu-latest
3030 steps :
31- - uses : actions/checkout@v5
32- - uses : actions/setup-python@v5
31+ - uses : actions/checkout@v6
32+ - uses : actions/setup-python@v6
3333 with :
34- python-version : " 3.12 "
34+ python-version : " 3.14 "
3535 -
uses :
pre-commit/[email protected] 3636
3737 test-unit :
@@ -40,15 +40,15 @@ jobs:
4040 matrix :
4141 python-version : [ 3.9, "3.10", "3.11", "3.12" ]
4242 steps :
43- - uses : actions/checkout@v5
44- - uses : actions/setup-python@v5
43+ - uses : actions/checkout@v6
44+ - uses : actions/setup-python@v6
4545 with :
4646 python-version : ${{ matrix.python-version }}
4747 - run : |
4848 curl -sSL https://install.python-poetry.org | python3 - --version 2.1.4
4949 poetry install
5050 poetry run pytest --junitxml=test-results/junit.xml
51- - uses : actions/upload-artifact@v4
51+ - uses : actions/upload-artifact@v5
5252 if : success() || failure()
5353 with :
5454 name : test-results-unit-python-${{ matrix.python-version }}
5757 compliance-copyrights :
5858 runs-on : ubuntu-latest
5959 steps :
60- - uses : actions/checkout@v5
61- - uses : apache/skywalking-eyes@v0.7 .0
60+ - uses : actions/checkout@v6
61+ - uses : apache/skywalking-eyes@v0.8 .0
6262
6363 publish :
6464 needs :
@@ -69,14 +69,14 @@ jobs:
6969 runs-on : ubuntu-latest
7070
7171 steps :
72- - uses : actions/checkout@v5
72+ - uses : actions/checkout@v6
7373 with :
7474 # Very important: semantic-release won't trigger a tagged
7575 # build if this is not set false
7676 persist-credentials : false
77- - uses : actions/setup-python@v5
77+ - uses : actions/setup-python@v6
7878 with :
79- python-version : " 3.9 "
79+ python-version : " 3.14 "
8080 - run : |
8181 curl -sSL https://install.python-poetry.org | python3 - --version 2.1.4
8282 poetry install
0 commit comments