Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update dev dependencies #2642

Merged
merged 2 commits into from
Aug 28, 2024
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
62 changes: 31 additions & 31 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Loading