Skip to content
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Cache pip packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
fi

- name: Run integration tests
if: github.event_name != 'workflow_dispatch' || inputs.run_integration_tests == 'true'
if: (github.event_name != 'workflow_dispatch' || inputs.run_integration_tests == 'true') && github.actor != 'app/dependabot'
env:
ESOLOGS_ID: ${{ secrets.ESOLOGS_ID }}
ESOLOGS_SECRET: ${{ secrets.ESOLOGS_SECRET }}
Expand All @@ -85,7 +85,7 @@ jobs:
pytest tests/integration/ -v --tb=short

- name: Run sanity tests
if: github.event_name != 'workflow_dispatch' || inputs.run_integration_tests == 'true'
if: (github.event_name != 'workflow_dispatch' || inputs.run_integration_tests == 'true') && github.actor != 'app/dependabot'
env:
ESOLOGS_ID: ${{ secrets.ESOLOGS_ID }}
ESOLOGS_SECRET: ${{ secrets.ESOLOGS_SECRET }}
Expand All @@ -95,7 +95,7 @@ jobs:

- name: Upload coverage to Codecov
if: matrix.python-version == '3.11'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
flags: unittests
Expand All @@ -107,7 +107,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"

Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"

Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/optimize-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install optimization tools
run: |
sudo apt-get update
sudo apt-get install -y pngquant optipng jpegoptim webp

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand Down
Loading