Skip to content

Commit

Permalink
fix(deps): update dependency antd to v5
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 5, 2024
1 parent b91532f commit cfdb38c
Show file tree
Hide file tree
Showing 6 changed files with 800 additions and 517 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: Event File
path: ${{ github.event_path }}
Expand All @@ -22,9 +22,9 @@ jobs:
pull-requests: write
steps:
- name: Checking out repository
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Set up Python (latest)
uses: actions/setup-python@v5
uses: actions/setup-python@v4
with:
python-version: "3.10.5"
- name: Install dependencies
Expand All @@ -48,7 +48,7 @@ jobs:
cd backend
pip install pytest-cov
python -m pytest --junitxml=junit/be-test-results.xml --cov=. --cov-report=xml --cov-report=html
- uses: actions/upload-artifact@v4 # upload test results
- uses: actions/upload-artifact@v3 # upload test results
if: always()
with:
name: be-test-results
Expand All @@ -58,17 +58,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checking out repository
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Set up Python (latest)
uses: actions/setup-python@v5
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Run frontend tests
run: |
cd frontend
npm ci
npm run test
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
if: always()
with:
name: fe-test-results
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v3

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

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
10 changes: 5 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ jobs:
dockerfile: production.dockerfile
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v2
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v3
with:
context: ${{ matrix.component }}
push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/dev' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pylinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v4
with:
python-version: "3.x"

Expand Down
Loading

0 comments on commit cfdb38c

Please sign in to comment.