Skip to content

Commit

Permalink
Merge branch 'master' into feat/crawler-stop
Browse files Browse the repository at this point in the history
  • Loading branch information
barjin committed Jan 18, 2025
2 parents 05b43b9 + 7877cc6 commit 1611602
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
check_pr_title:
name: 'Check PR title'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: amannn/[email protected]
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ env:
jobs:
trigger_ci:
name: Trigger CI
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

if: github.repository == 'apify/crawlee'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: write
pages: write
id-token: write
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fail-fast: true
matrix:
# We don't test on Windows as the tests are flaky
os: [ ubuntu-latest ]
os: [ ubuntu-22.04 ]
node-version: [ 16, 18, 20, 22 ]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
name: "Bump Crawlee: ${{ inputs.version }} version (${{ inputs.custom_version || 'n/a' }} custom version)"
if: (!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, 'docs:'))
needs: build_and_test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:

version-docs:
needs: release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: (github.event.inputs.version == 'minor' || github.event.inputs.version == 'major')

steps:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
fail-fast: false
matrix:
# tests on windows are extremely unstable
# os: [ ubuntu-latest, windows-2019 ]
os: [ ubuntu-latest ]
# os: [ ubuntu-22.04, windows-2019 ]
os: [ ubuntu-22.04 ]
node-version: [ 16, 18, 20, 22 ]

steps:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
docs:
name: Docs build
if: (!contains(github.event.head_commit.message, '[skip ci]') && github.ref != 'refs/heads/master')
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Source code
uses: actions/checkout@v4
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

lint:
name: Lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
name: Release @next
if: github.event_name == 'push' && contains(github.event.ref, 'master') && (!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, 'docs:'))
needs: build_and_test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# NPM install is done in a separate job and cached to speed up the following jobs.
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_new_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
label_issues:
name: Label issues
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
issues: write

Expand Down

0 comments on commit 1611602

Please sign in to comment.