-
Notifications
You must be signed in to change notification settings - Fork 683
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update dev dependencies (#2642)
- Loading branch information
Showing
9 changed files
with
499 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ on: | |
types: | ||
- crawlee-docker-image-bump | ||
schedule: | ||
- cron: 0 */1 * * * | ||
- cron: 0 */1 * * * | ||
|
||
env: | ||
ACTIONS_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} | ||
|
@@ -31,38 +31,38 @@ jobs: | |
if: github.repository == 'apify/crawlee' | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} | ||
fetch-depth: 0 | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} | ||
fetch-depth: 0 | ||
|
||
- name: Use Bun | ||
uses: oven-sh/setup-bun@v2 | ||
- name: Use Bun | ||
uses: oven-sh/setup-bun@v2 | ||
|
||
- name: Install Bun Dependencies | ||
run: | | ||
pushd ./scripts/actions/docker-images | ||
bun install | ||
popd | ||
- name: Install Bun Dependencies | ||
run: | | ||
pushd ./scripts/actions/docker-images | ||
bun install | ||
popd | ||
- name: Setup git user | ||
run: | | ||
git config --global user.name "Apify Release Bot" | ||
git config --global user.email "[email protected]" | ||
- name: Setup git user | ||
run: | | ||
git config --global user.name "Apify Release Bot" | ||
git config --global user.email "[email protected]" | ||
- name: Run Docker Action | ||
run: | | ||
pushd ./scripts/actions/docker-images | ||
bun run-ci | ||
popd | ||
env: | ||
ACTIONS_TOKEN: ${{ env.ACTIONS_TOKEN }} | ||
CRAWLEE_BETA_VERSION: ${{ env.CRAWLEE_BETA_VERSION }} | ||
TRIGGER_LATEST: ${{ env.TRIGGER_LATEST }} | ||
- name: Run Docker Action | ||
run: | | ||
pushd ./scripts/actions/docker-images | ||
bun run-ci | ||
popd | ||
env: | ||
ACTIONS_TOKEN: ${{ env.ACTIONS_TOKEN }} | ||
CRAWLEE_BETA_VERSION: ${{ env.CRAWLEE_BETA_VERSION }} | ||
TRIGGER_LATEST: ${{ env.TRIGGER_LATEST }} | ||
|
||
- name: Update Docker state | ||
run: | | ||
git add . | ||
git diff-index --quiet HEAD || git commit -m "chore(docker): update docker state [skip ci]" | ||
git push | ||
- name: Update Docker state | ||
run: | | ||
git add . | ||
git diff-index --quiet HEAD || git commit -m "chore(docker): update docker state [skip ci]" | ||
git push |
Oops, something went wrong.