@@ -25,13 +25,13 @@ jobs:
25
25
release_metadata :
26
26
name : Prepare release metadata
27
27
runs-on : ubuntu-latest
28
- outputs :
28
+ outputs :
29
29
version_number : ${{ steps.release_metadata.outputs.version_number }}
30
30
tag_name : ${{ steps.release_metadata.outputs.tag_name }}
31
31
changelog : ${{ steps.release_metadata.outputs.changelog }}
32
32
release_notes : ${{ steps.release_metadata.outputs.release_notes }}
33
33
steps :
34
- - uses : apify/workflows/git-cliff-release@switch-to-uv
34
+ - uses : apify/workflows/git-cliff-release@main
35
35
name : Prepare release metadata
36
36
id : release_metadata
37
37
with :
@@ -41,29 +41,29 @@ jobs:
41
41
42
42
lint_check :
43
43
name : Lint check
44
- uses : apify/workflows/.github/workflows/python_lint_check.yaml@switch-to-uv
44
+ uses : apify/workflows/.github/workflows/python_lint_check.yaml@main
45
45
46
46
type_check :
47
47
name : Type check
48
- uses : apify/workflows/.github/workflows/python_type_check.yaml@switch-to-uv
48
+ uses : apify/workflows/.github/workflows/python_type_check.yaml@main
49
49
50
50
unit_tests :
51
51
name : Unit tests
52
- uses : apify/workflows/.github/workflows/python_unit_tests.yaml@switch-to-uv
52
+ uses : apify/workflows/.github/workflows/python_unit_tests.yaml@main
53
53
54
54
integration_tests :
55
55
name : Integration tests
56
- uses : apify/workflows/.github/workflows/python_integration_tests.yaml@switch-to-uv
56
+ uses : apify/workflows/.github/workflows/python_integration_tests.yaml@main
57
57
secrets : inherit
58
58
59
59
update_changelog :
60
60
name : Update changelog
61
61
needs : [release_metadata, lint_check, type_check, unit_tests, integration_tests]
62
- uses : apify/workflows/.github/workflows/python_bump_and_update_changelog.yaml@switch-to-uv
62
+ uses : apify/workflows/.github/workflows/python_bump_and_update_changelog.yaml@main
63
63
with :
64
64
version_number : ${{ needs.release_metadata.outputs.version_number }}
65
65
changelog : ${{ needs.release_metadata.outputs.changelog }}
66
- secrets :
66
+ secrets :
67
67
APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN : ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
68
68
69
69
create_github_release :
93
93
url : https://pypi.org/project/apify
94
94
steps :
95
95
- name : Prepare distribution
96
- uses : apify/workflows/prepare-pypi-distribution@switch-to-uv
97
- with :
96
+ uses : apify/workflows/prepare-pypi-distribution@main
97
+ with :
98
98
package_name : apify
99
99
is_prerelease : " "
100
100
version_number : ${{ needs.release_metadata.outputs.version_number }}
0 commit comments