Skip to content

Commit 0feab7f

Browse files
chore(deps): update apify/actions action to v1.3.0 (#1011)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [apify/actions](https://redirect.github.com/apify/actions) | action | minor | `v1.2.0` → `v1.3.0` | --- ### Release Notes <details> <summary>apify/actions (apify/actions)</summary> ### [`v1.3.0`](https://redirect.github.com/apify/actions/releases/tag/v1.3.0) [Compare Source](https://redirect.github.com/apify/actions/compare/v1.2.0...v1.3.0) ##### Features - enhance MongoDB index checker with detailed sharding guidelines and common patterns ([#&#8203;25](https://redirect.github.com/apify/actions/issues/25)) ([ebbf103](https://redirect.github.com/apify/actions/commit/ebbf10368eb33412fd89dbc7094c25ba8dfb1789)) - extend MongoDB index-check prompt with six more review patterns ([#&#8203;21](https://redirect.github.com/apify/actions/issues/21)) ([8bab229](https://redirect.github.com/apify/actions/commit/8bab22948562bab4bb1a4a962e5571709676550f)) - PR title check action ([#&#8203;24](https://redirect.github.com/apify/actions/issues/24)) ([28507c2](https://redirect.github.com/apify/actions/commit/28507c283529cfd5de11f7046443d25a39cb73e4)) - Update model version from claude-opus-4-7 to claude-opus-4-8 ([#&#8203;26](https://redirect.github.com/apify/actions/issues/26)) ([f4bd7c9](https://redirect.github.com/apify/actions/commit/f4bd7c9aeaf8c43aaac13b17e41025a32dcec039)) ##### Bug Fixes - **git-cliff-release:** Improve behavior with no existing version tag ([#&#8203;27](https://redirect.github.com/apify/actions/issues/27)) ([9d7631e](https://redirect.github.com/apify/actions/commit/9d7631e09fd7cc1246532c903cb22633ea3eafa4)) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - "before 7am every weekday" - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apify/apify-sdk-python). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMzUuMCIsInVwZGF0ZWRJblZlciI6IjQzLjIzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3c294fa commit 0feab7f

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
run: uv run poe build
195195

196196
- name: Verify built package
197-
uses: apify/actions/python-package-check@v1.2.0
197+
uses: apify/actions/python-package-check@v1.3.0
198198
with:
199199
package_name: apify
200200
dist_dir: dist

.github/workflows/manual_release_beta.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
checks: read
2525
steps:
2626
- name: Wait for checks
27-
uses: apify/actions/wait-for-checks@v1.2.0
27+
uses: apify/actions/wait-for-checks@v1.3.0
2828
with:
2929
ref: ${{ github.sha }}
3030
check-regexp: '^Checks'
@@ -37,7 +37,7 @@ jobs:
3737
version_number: ${{ steps.release_prepare.outputs.version_number }}
3838
changelog: ${{ steps.release_prepare.outputs.changelog }}
3939
steps:
40-
- uses: apify/actions/git-cliff-release@v1.2.0
40+
- uses: apify/actions/git-cliff-release@v1.3.0
4141
id: release_prepare
4242
name: Release prepare
4343
with:
@@ -67,15 +67,15 @@ jobs:
6767
url: https://pypi.org/project/apify
6868
steps:
6969
- name: Prepare distribution
70-
uses: apify/actions/prepare-pypi-distribution@v1.2.0
70+
uses: apify/actions/prepare-pypi-distribution@v1.3.0
7171
with:
7272
package_name: apify
7373
is_prerelease: "yes"
7474
version_number: ${{ needs.release_prepare.outputs.version_number }}
7575
ref: ${{ needs.changelog_update.outputs.changelog_commitish }}
7676

7777
- name: Verify built package
78-
uses: apify/actions/python-package-check@v1.2.0
78+
uses: apify/actions/python-package-check@v1.3.0
7979
with:
8080
package_name: apify
8181
dist_dir: dist

.github/workflows/manual_release_docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# skipped when called from another workflow.
4444
- name: Wait for checks
4545
if: github.event_name == 'workflow_dispatch'
46-
uses: apify/actions/wait-for-checks@v1.2.0
46+
uses: apify/actions/wait-for-checks@v1.3.0
4747
with:
4848
ref: ${{ github.sha }}
4949
check-regexp: '^Checks'
@@ -73,15 +73,15 @@ jobs:
7373
run: uv run poe install-dev
7474

7575
- name: Install pnpm and website dependencies
76-
uses: apify/actions/pnpm-install@v1.2.0
76+
uses: apify/actions/pnpm-install@v1.3.0
7777
with:
7878
working-directory: website
7979

8080
- name: Update docs theme
8181
run: uv run poe update-docs-theme
8282

8383
- name: Commit the updated package.json and lockfile
84-
uses: apify/actions/signed-commit@v1.2.0
84+
uses: apify/actions/signed-commit@v1.3.0
8585
with:
8686
message: "chore: Automatic docs theme update [skip ci]"
8787
add: 'website/package.json website/pnpm-lock.yaml'

.github/workflows/manual_release_stable.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
checks: read
3838
steps:
3939
- name: Wait for checks
40-
uses: apify/actions/wait-for-checks@v1.2.0
40+
uses: apify/actions/wait-for-checks@v1.3.0
4141
with:
4242
ref: ${{ github.sha }}
4343
check-regexp: '^Checks'
@@ -52,7 +52,7 @@ jobs:
5252
changelog: ${{ steps.release_prepare.outputs.changelog }}
5353
release_notes: ${{ steps.release_prepare.outputs.release_notes }}
5454
steps:
55-
- uses: apify/actions/git-cliff-release@v1.2.0
55+
- uses: apify/actions/git-cliff-release@v1.3.0
5656
name: Release prepare
5757
id: release_prepare
5858
with:
@@ -100,15 +100,15 @@ jobs:
100100
url: https://pypi.org/project/apify
101101
steps:
102102
- name: Prepare distribution
103-
uses: apify/actions/prepare-pypi-distribution@v1.2.0
103+
uses: apify/actions/prepare-pypi-distribution@v1.3.0
104104
with:
105105
package_name: apify
106106
is_prerelease: ""
107107
version_number: ${{ needs.release_prepare.outputs.version_number }}
108108
ref: ${{ needs.changelog_update.outputs.changelog_commitish }}
109109

110110
- name: Verify built package
111-
uses: apify/actions/python-package-check@v1.2.0
111+
uses: apify/actions/python-package-check@v1.3.0
112112
with:
113113
package_name: apify
114114
dist_dir: dist

.github/workflows/manual_version_docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# skipped when called from another workflow.
4848
- name: Wait for checks
4949
if: github.event_name == 'workflow_dispatch'
50-
uses: apify/actions/wait-for-checks@v1.2.0
50+
uses: apify/actions/wait-for-checks@v1.3.0
5151
with:
5252
ref: ${{ github.sha }}
5353
check-regexp: '^Checks'
@@ -77,7 +77,7 @@ jobs:
7777
working-directory: .
7878

7979
- name: Install pnpm and website dependencies
80-
uses: apify/actions/pnpm-install@v1.2.0
80+
uses: apify/actions/pnpm-install@v1.3.0
8181
with:
8282
working-directory: website
8383

@@ -128,7 +128,7 @@ jobs:
128128
uv run pnpm exec docusaurus api:version "$MAJOR_MINOR_VERSION"
129129
130130
- name: Commit and push versioned docs
131-
uses: apify/actions/signed-commit@v1.2.0
131+
uses: apify/actions/signed-commit@v1.3.0
132132
with:
133133
message: "docs: Version docs for v${{ steps.snapshot.outputs.version }} [skip ci]"
134134
add: 'website/versioned_docs website/versioned_sidebars website/versions.json'

.github/workflows/on_master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ jobs:
6363
actions: write # Required by execute-workflow.
6464
steps:
6565
- name: Dispatch beta release workflow
66-
uses: apify/actions/execute-workflow@v1.2.0
66+
uses: apify/actions/execute-workflow@v1.3.0
6767
with:
6868
workflow: manual_release_beta.yaml

0 commit comments

Comments
 (0)