Skip to content

Commit 8587239

Browse files
authored
chore: Replace calling reusable actions from apify/workflows/... to apify/actions/... [internal] (#1901)
It was confusing that we have our custom GitHub actions in a repository called `workflows`. I've moved them to a new repository called `actions`, and this PR replaces the references to the actions to point to the new repository. There are no functional changes, the actions just moved.
1 parent 696f39d commit 8587239

5 files changed

Lines changed: 8 additions & 8 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.1.2
2727
id: release_prepare
2828
name: Release prepare
2929
with:
@@ -53,7 +53,7 @@ jobs:
5353
url: https://pypi.org/project/crawlee
5454
steps:
5555
- name: Prepare distribution
56-
uses: apify/workflows/prepare-pypi-distribution@main
56+
uses: apify/actions/prepare-pypi-distribution@v1.1.2
5757
with:
5858
package_name: crawlee
5959
is_prerelease: "yes"

.github/workflows/manual_release_docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: uv run poe install-dev
5757

5858
- name: Install pnpm and website dependencies
59-
uses: apify/workflows/pnpm-install@main
59+
uses: apify/actions/pnpm-install@v1.1.2
6060
with:
6161
working-directory: website
6262

.github/workflows/manual_release_stable.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
changelog: ${{ steps.release_prepare.outputs.changelog }}
4444
release_notes: ${{ steps.release_prepare.outputs.release_notes }}
4545
steps:
46-
- uses: apify/workflows/git-cliff-release@main
46+
- uses: apify/actions/git-cliff-release@v1.1.2
4747
name: Release prepare
4848
id: release_prepare
4949
with:
@@ -91,7 +91,7 @@ jobs:
9191
url: https://pypi.org/project/crawlee
9292
steps:
9393
- name: Prepare distribution
94-
uses: apify/workflows/prepare-pypi-distribution@main
94+
uses: apify/actions/prepare-pypi-distribution@v1.1.2
9595
with:
9696
package_name: crawlee
9797
is_prerelease: ""

.github/workflows/manual_version_docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: uv run poe install-dev
6363

6464
- name: Install pnpm and website dependencies
65-
uses: apify/workflows/pnpm-install@main
65+
uses: apify/actions/pnpm-install@v1.1.2
6666
with:
6767
working-directory: website
6868

.github/workflows/on_master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ jobs:
5959
actions: write # Required by execute-workflow.
6060
steps:
6161
- name: Dispatch beta release workflow
62-
uses: apify/workflows/execute-workflow@main
62+
uses: apify/actions/execute-workflow@v1.1.2
6363
with:
6464
workflow: manual_release_beta.yaml

0 commit comments

Comments
 (0)