Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ env.LATEST_NODE_VERSION }}
uses: actions/setup-node@v6
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ env.LATEST_NODE_VERSION }}
uses: actions/setup-node@v6
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
run: |
echo "::add-mask::${{ secrets.APIFY_TEST_USER_API_TOKEN }}"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
run: |
echo "::add-mask::${{ secrets.APIFY_TEST_USER_API_TOKEN }}"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ env.LATEST_NODE_VERSION }}
uses: actions/setup-node@v6
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
run: |
echo "::add-mask::${{ secrets.APIFY_TEST_USER_API_TOKEN }}"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ env.LATEST_NODE_VERSION }}
uses: actions/setup-node@v6
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ env.LATEST_NODE_VERSION }}
uses: actions/setup-node@v6
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ env.LATEST_NODE_VERSION }}
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cucumber.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
echo "::add-mask::${{ secrets.APIFY_TEST_USER_API_TOKEN }}"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}

Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.update_changelog.outputs.changelog_commitish }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Publish to NPM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ inputs.ref }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Check if the head commit contains [skip ci]
id: check_skip
run: |
Expand All @@ -78,7 +78,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}

Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.update_changelog.outputs.changelog_commitish }}
fetch-depth: 0
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.update_changelog.outputs.changelog_commitish }}

Expand Down
Loading