Skip to content

Commit 16d1ce5

Browse files
committed
chore: Replace calling reusable actions from apify/workflows/... to apify/actions/... [internal]
1 parent a1d5d4c commit 16d1ce5

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/manual_release_beta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Beta release
22

33
on:
44
# Runs when manually triggered from the GitHub UI, or dispatched from `on_master.yaml`
5-
# via the `apify/workflows/execute-workflow` action for the automatic beta release on push to master.
5+
# via the `apify/actions/execute-workflow` action for the automatic beta release on push to master.
66
# Note: This workflow is intentionally NOT a reusable workflow (no `workflow_call`) because PyPI's
77
# Trusted Publishing does not currently support reusable workflows.
88
# See: https://docs.pypi.org/trusted-publishers/troubleshooting/#reusable-workflows-on-github
@@ -23,7 +23,7 @@ jobs:
2323
version_number: ${{ steps.release_prepare.outputs.version_number }}
2424
changelog: ${{ steps.release_prepare.outputs.changelog }}
2525
steps:
26-
- uses: apify/workflows/git-cliff-release@main
26+
- uses: apify/actions/git-cliff-release@v1.0.0
2727
id: release_prepare
2828
name: Release prepare
2929
with:
@@ -53,7 +53,7 @@ jobs:
5353
url: https://pypi.org/project/apify-shared
5454
steps:
5555
- name: Prepare distribution
56-
uses: apify/workflows/prepare-pypi-distribution@main
56+
uses: apify/actions/prepare-pypi-distribution@v1.0.0
5757
with:
5858
package_name: apify-shared
5959
is_prerelease: "yes"

.github/workflows/manual_release_stable.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
changelog: ${{ steps.release_prepare.outputs.changelog }}
4545
release_notes: ${{ steps.release_prepare.outputs.release_notes }}
4646
steps:
47-
- uses: apify/workflows/git-cliff-release@main
47+
- uses: apify/actions/git-cliff-release@v1.0.0
4848
name: Release prepare
4949
id: release_prepare
5050
with:
@@ -88,7 +88,7 @@ jobs:
8888
url: https://pypi.org/project/apify-shared
8989
steps:
9090
- name: Prepare distribution
91-
uses: apify/workflows/prepare-pypi-distribution@main
91+
uses: apify/actions/prepare-pypi-distribution@v1.0.0
9292
with:
9393
package_name: apify-shared
9494
is_prerelease: ""

.github/workflows/on_master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
actions: write # Required by execute-workflow.
3232
steps:
3333
- name: Dispatch beta release workflow
34-
uses: apify/workflows/execute-workflow@main
34+
uses: apify/actions/execute-workflow@v1.0.0
3535
with:
3636
workflow: manual_release_beta.yaml

0 commit comments

Comments
 (0)