|
7 | 7 | lint: |
8 | 8 | runs-on: ubuntu-latest |
9 | 9 | steps: |
10 | | - - uses: actions/checkout@v5 |
| 10 | + - uses: actions/checkout@v6 |
11 | 11 | - name: Check out building-data-utilities repository |
12 | | - uses: actions/checkout@v5 |
| 12 | + uses: actions/checkout@v6 |
13 | 13 | with: |
14 | 14 | repository: SEED-platform/building-data-utilities |
15 | 15 | path: building-data-utilities |
|
18 | 18 | mkdir -p ../ |
19 | 19 | mv building-data-utilities ../building-data-utilities |
20 | 20 | - name: Set up Python 3.12 |
21 | | - uses: actions/setup-python@v6.0.0 |
| 21 | + uses: actions/setup-python@v6.1.0 |
22 | 22 | with: |
23 | 23 | python-version: '3.12' |
24 | 24 | - name: Install Poetry |
|
47 | 47 | python-version: ['3.9', '3.12'] |
48 | 48 | runs-on: ubuntu-latest |
49 | 49 | steps: |
50 | | - - uses: actions/checkout@v5 |
| 50 | + - uses: actions/checkout@v6 |
51 | 51 | - name: Check out building-data-utilities repository |
52 | | - uses: actions/checkout@v5 |
| 52 | + uses: actions/checkout@v6 |
53 | 53 | with: |
54 | 54 | repository: SEED-platform/building-data-utilities |
55 | 55 | path: building-data-utilities |
|
58 | 58 | mkdir -p ../ |
59 | 59 | mv building-data-utilities ../building-data-utilities |
60 | 60 | - name: Set up Python ${{ matrix.python-version }} |
61 | | - uses: actions/setup-python@v6.0.0 |
| 61 | + uses: actions/setup-python@v6.1.0 |
62 | 62 | with: |
63 | 63 | python-version: ${{ matrix.python-version }} |
64 | 64 | - name: Install Poetry |
|
78 | 78 | run: poetry run pytest --cov=flask_app --cov-report=html --cov-report=xml --cov-report=term --disable-warnings |
79 | 79 | - name: Upload Python Test Coverage |
80 | 80 | if: matrix.python-version == '3.12' # Only upload once per build |
81 | | - uses: actions/upload-artifact@v5 |
| 81 | + uses: actions/upload-artifact@v6 |
82 | 82 | with: |
83 | 83 | name: python-coverage |
84 | 84 | path: flask_app/htmlcov/ |
|
88 | 88 | needs: lint |
89 | 89 | runs-on: ubuntu-latest |
90 | 90 | steps: |
91 | | - - uses: actions/checkout@v5 |
| 91 | + - uses: actions/checkout@v6 |
92 | 92 | - uses: actions/setup-node@v6 |
93 | 93 | with: |
94 | 94 | node-version: 22 |
@@ -117,7 +117,7 @@ jobs: |
117 | 117 | # This executes all *.spec.ts files in the project |
118 | 118 | npm test |
119 | 119 | - name: Upload Angular Test Coverage |
120 | | - uses: actions/upload-artifact@v5 |
| 120 | + uses: actions/upload-artifact@v6 |
121 | 121 | with: |
122 | 122 | name: angular-coverage |
123 | 123 | path: angular-app/coverage/ |
|
0 commit comments