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

2.1.3 #52

Merged
merged 15 commits into from
Dec 15, 2023
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"
20 changes: 15 additions & 5 deletions .github/workflows/generate_demo_gifs.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
name: Generate demo files
name: Generate demo GIFs

on:
workflow_dispatch:
pull_request:
schedule:
- cron: '0 12 1-7 * 6'

jobs:
generate-gif-cron:
generate-gifs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -67,8 +65,20 @@ jobs:
window_width: 1280
window_height: 720
- name: Archive GIFs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Generated GIFs
path: |
./docs/images/*

automerge-dependabot:
runs-on: ubuntu-latest
needs: generate-gifs
if: github.actor == 'dependabot[bot]' && github.event.pull_request.user.login == 'dependabot[bot]' && github.event.pull_request.base.ref == 'develop'
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/update_demo_gifs_dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update demo files (dev)
name: Generate and update demo GIFs

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
workflow_dispatch:

jobs:
generate-gif-dev:
generate-and-push-gifs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
window_width: 1280
window_height: 720
- name: Archive GIFs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Generated GIFs
path: |
Expand Down
Binary file modified docs/images/animated_no_scroll.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/ss_15_tps_80.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/ss_25_tps_100.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/ss_50_tps_100.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/ss_50_tps_200.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/ss_50_tps_50.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
selenium==4.14.0
selenium==4.16.0
Pillow==10.1.0
Loading