@@ -77,26 +77,19 @@ jobs:
7777 - '**'
7878 doc-requirements:
7979 - added|modified: &doc_requirements
80- - requirements/static/ci/py3.*/docs.txt
80+ - requirements/static/ci/py3.*/docs.lock
8181 lint-requirements:
8282 - added|modified: &lint_requirements
83- - requirements/static/ci/py3.*/lint.txt
83+ - requirements/static/ci/py3.*/lint.lock
8484 pkg_requirements:
8585 - added|modified: &pkg_requirements
86- - requirements/static/pkg/py3.*/darwin.txt
87- - requirements/static/pkg/py3.*/linux.txt
88- - requirements/static/pkg/py3.*/freebsd.txt
89- - requirements/static/pkg/py3.*/windows.txt
86+ - requirements/static/pkg/*.in
87+ - requirements/static/pkg/py3.*/*.in
88+ - requirements/static/pkg/py3.*/*.lock
9089 test_requirements:
9190 - added|modified: &test_requirements
92- - requirements/static/ci/py3.*/darwin.txt
93- - requirements/static/ci/py3.*/linux.txt
94- - requirements/static/ci/py3.*/freebsd.txt
95- - requirements/static/ci/py3.*/windows.txt
96- - requirements/static/ci/py3.*/darwin-crypto.txt
97- - requirements/static/ci/py3.*/linux-crypto.txt
98- - requirements/static/ci/py3.*/freebsd-crypto.txt
99- - requirements/static/ci/py3.*/windows-crypto.txt
91+ - requirements/static/ci/*.in
92+ - requirements/static/ci/py3.*/*.lock
10093 deleted:
10194 - deleted:
10295 - '**'
@@ -176,7 +169,7 @@ jobs:
176169 shell : bash
177170 run : |
178171 HASH=$(python3 .github/scripts/hash-files.py \
179- 'requirements/**/*.txt ' \
172+ 'requirements/**/*' \
180173 'cicd/golden-images.json' \
181174 'noxfile.py' \
182175 'pkg/common/env-cleanup-rules.yml' \
@@ -301,15 +294,15 @@ jobs:
301294 shell : bash
302295 if : ${{ startsWith(github.event.ref, 'refs/tags') == false }}
303296 run : |
304- tools changelog update-deb --draft
305- tools changelog update-deb
297+ tools changelog update-deb "${{ needs.prepare-workflow.outputs.salt-version }}" --draft
298+ tools changelog update-deb "${{ needs.prepare-workflow.outputs.salt-version }}"
306299
307300 - name : Update RPM changelog
308301 shell : bash
309302 if : ${{ startsWith(github.event.ref, 'refs/tags') == false }}
310303 run : |
311- tools changelog update-rpm --draft
312- tools changelog update-rpm
304+ tools changelog update-rpm "${{ needs.prepare-workflow.outputs.salt-version }}" --draft
305+ tools changelog update-rpm "${{ needs.prepare-workflow.outputs.salt-version }}"
313306
314307 - name : Create Release Notes Template
315308 shell : bash
0 commit comments