Skip to content

Commit 6d947bf

Browse files
committed
Python version bumps as 3.7 not there anymore. Other versions bumped and set-output fixed
1 parent 132f2ec commit 6d947bf

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ on:
1717
jobs:
1818
build:
1919

20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-24.04
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
24+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2525

2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- name: Set up ${{ matrix.python-version }}
29-
uses: actions/setup-python@v3
29+
uses: actions/setup-python@v4
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

@@ -53,18 +53,18 @@ jobs:
5353
coverage json
5454
5555
- name: Upload coverage reports to Codecov
56-
uses: codecov/codecov-action@v3
56+
uses: codecov/codecov-action@v5
5757
env:
5858
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5959

6060
- name: Checksum build directory
6161
id: build-checksum
6262
run: |
63-
echo "::set-output name=checksum::$(find build_directory -type f -exec md5sum {} \; | sort | md5sum)"
63+
echo "checksum=$(find build_directory -type f -exec md5sum {} \; | sort | md5sum)" >> $GITHUB_OUTPUT
6464
6565
- name: Cache image
6666
id: cache-image
67-
uses: actions/cache@v3
67+
uses: actions/cache@v4
6868
with:
6969
path: |
7070
build_directory/host2test_latest.tar.gz

0 commit comments

Comments
 (0)