Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm and dependencies
uses: apify/actions/pnpm-install@v1.1.0
uses: apify/actions/pnpm-install@v1.1.1
- name: Run Tests
run: pnpm test

Expand All @@ -54,7 +54,7 @@ jobs:
with:
node-version: 24
- name: Install pnpm and dependencies
uses: apify/actions/pnpm-install@v1.1.0
uses: apify/actions/pnpm-install@v1.1.1
- run: pnpm lint

format-check:
Expand All @@ -68,5 +68,5 @@ jobs:
with:
node-version: 24
- name: Install pnpm and dependencies
uses: apify/actions/pnpm-install@v1.1.0
uses: apify/actions/pnpm-install@v1.1.1
- run: pnpm format:check
6 changes: 3 additions & 3 deletions .github/workflows/pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
version_number: ${{ steps.release_metadata.outputs.version_number }}
changelog: ${{ steps.release_metadata.outputs.changelog }}
steps:
- uses: apify/actions/git-cliff-release@v1.1.0
- uses: apify/actions/git-cliff-release@v1.1.1
name: Prepare release metadata
id: release_metadata
with:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
node-version: 24

- name: Install pnpm and dependencies
uses: apify/actions/pnpm-install@v1.1.0
uses: apify/actions/pnpm-install@v1.1.1

- name: Update package version in package.json
run: pnpm version --no-git-tag-version --allow-same-version ${{ needs.release_metadata.outputs.version_number }}
Expand All @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Execute publish workflow
uses: apify/actions/execute-workflow@v1.1.0
uses: apify/actions/execute-workflow@v1.1.1
with:
workflow: publish_to_npm.yaml
inputs: '{ "ref": "${{ needs.update_changelog.outputs.changelog_commitish }}", "tag": "beta" }'
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
node-version: 24
registry-url: 'https://registry.npmjs.org'
- name: Install pnpm and dependencies
uses: apify/actions/pnpm-install@v1.1.0
uses: apify/actions/pnpm-install@v1.1.1
- name: Check version consistency and bump pre-release version (beta only)
if: ${{ inputs.tag == 'beta' }}
run: node ./.github/scripts/before-beta-release.js
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
changelog: ${{ steps.release_metadata.outputs.changelog }}
release_notes: ${{ steps.release_metadata.outputs.release_notes }}
steps:
- uses: apify/actions/git-cliff-release@v1.1.0
- uses: apify/actions/git-cliff-release@v1.1.1
name: Prepare release metadata
id: release_metadata
with:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
node-version: 24

- name: Install pnpm and dependencies
uses: apify/actions/pnpm-install@v1.1.0
uses: apify/actions/pnpm-install@v1.1.1

- name: Update package version in package.json
run: pnpm version --no-git-tag-version --allow-same-version ${{ needs.release_metadata.outputs.version_number }}
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Execute publish workflow
uses: apify/actions/execute-workflow@v1.1.0
uses: apify/actions/execute-workflow@v1.1.1
with:
workflow: publish_to_npm.yaml
inputs: '{ "ref": "${{ needs.update_changelog.outputs.changelog_commitish }}", "tag": "latest" }'
Loading