Skip to content

Commit 1bb10fc

Browse files
authored
chore: Replace calling reusable actions from apify/workflows/... to apify/actions/... [internal] (#903)
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 1e7df71 commit 1bb10fc

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/check.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
node-version: ${{ matrix.node-version }}
4141

4242
- name: Install pnpm and dependencies
43-
uses: apify/workflows/pnpm-install@main
43+
uses: apify/actions/pnpm-install@v1.0.0
4444

4545
- name: Install Chrome for puppeteer
4646
run: pnpm exec puppeteer browsers install chrome
@@ -61,7 +61,7 @@ jobs:
6161
node-version: 24
6262

6363
- name: Install pnpm and dependencies
64-
uses: apify/workflows/pnpm-install@main
64+
uses: apify/actions/pnpm-install@v1.0.0
6565

6666
- name: Run Tests
6767
run: pnpm test:bundling
@@ -77,7 +77,7 @@ jobs:
7777
with:
7878
node-version: 24
7979
- name: Install pnpm and dependencies
80-
uses: apify/workflows/pnpm-install@main
80+
uses: apify/actions/pnpm-install@v1.0.0
8181
- run: pnpm lint
8282
- name: Format check
8383
run: pnpm format:check
@@ -95,7 +95,7 @@ jobs:
9595
with:
9696
node-version: 24
9797
- name: Install pnpm and dependencies
98-
uses: apify/workflows/pnpm-install@main
98+
uses: apify/actions/pnpm-install@v1.0.0
9999

100100
- name: Build docs
101101
run: |

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
git config user.email 'github-actions[bot]@users.noreply.github.com'
3434
3535
- name: Install pnpm and dependencies
36-
uses: apify/workflows/pnpm-install@main
36+
uses: apify/actions/pnpm-install@v1.0.0
3737

3838
- name: Update docs theme
3939
run: pnpm --filter apify-client-website update @apify/docs-theme

.github/workflows/pre_release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
version_number: ${{ steps.release_metadata.outputs.version_number }}
2222
changelog: ${{ steps.release_metadata.outputs.changelog }}
2323
steps:
24-
- uses: apify/workflows/git-cliff-release@main
24+
- uses: apify/actions/git-cliff-release@v1.0.0
2525
name: Prepare release metadata
2626
id: release_metadata
2727
with:
@@ -58,7 +58,7 @@ jobs:
5858
node-version: 24
5959

6060
- name: Install pnpm and dependencies
61-
uses: apify/workflows/pnpm-install@main
61+
uses: apify/actions/pnpm-install@v1.0.0
6262

6363
- name: Update package version in package.json
6464
run: pnpm version --no-git-tag-version --allow-same-version ${{ needs.release_metadata.outputs.version_number }}
@@ -84,7 +84,7 @@ jobs:
8484
runs-on: ubuntu-latest
8585
steps:
8686
- name: Execute publish workflow
87-
uses: apify/workflows/execute-workflow@main
87+
uses: apify/actions/execute-workflow@v1.0.0
8888
with:
8989
workflow: publish_to_npm.yaml
9090
inputs: '{ "ref": "${{ needs.update_changelog.outputs.changelog_commitish }}", "tag": "beta" }'

.github/workflows/publish_to_npm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
node-version: 24
3535
registry-url: 'https://registry.npmjs.org'
3636
- name: Install pnpm and dependencies
37-
uses: apify/workflows/pnpm-install@main
37+
uses: apify/actions/pnpm-install@v1.0.0
3838
- name: Check version consistency and bump pre-release version (beta only)
3939
if: ${{ inputs.tag == 'beta' }}
4040
run: node ./.github/scripts/before-beta-release.js

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
changelog: ${{ steps.release_metadata.outputs.changelog }}
3636
release_notes: ${{ steps.release_metadata.outputs.release_notes }}
3737
steps:
38-
- uses: apify/workflows/git-cliff-release@main
38+
- uses: apify/actions/git-cliff-release@v1.0.0
3939
name: Prepare release metadata
4040
id: release_metadata
4141
with:
@@ -65,7 +65,7 @@ jobs:
6565
node-version: 24
6666

6767
- name: Install pnpm and dependencies
68-
uses: apify/workflows/pnpm-install@main
68+
uses: apify/actions/pnpm-install@v1.0.0
6969

7070
- name: Update package version in package.json
7171
run: pnpm version --no-git-tag-version --allow-same-version ${{ needs.release_metadata.outputs.version_number }}
@@ -106,7 +106,7 @@ jobs:
106106
runs-on: ubuntu-latest
107107
steps:
108108
- name: Execute publish workflow
109-
uses: apify/workflows/execute-workflow@main
109+
uses: apify/actions/execute-workflow@v1.0.0
110110
with:
111111
workflow: publish_to_npm.yaml
112112
inputs: '{ "ref": "${{ needs.update_changelog.outputs.changelog_commitish }}", "tag": "latest" }'
@@ -132,7 +132,7 @@ jobs:
132132
run: sudo apt-get install jq
133133

134134
- name: Install pnpm and dependencies
135-
uses: apify/workflows/pnpm-install@main
135+
uses: apify/actions/pnpm-install@v1.0.0
136136

137137
- name: Snapshot the current version
138138
run: |

0 commit comments

Comments
 (0)