Skip to content

Commit

Permalink
chore(deps): update dependency @testing-library/jest-dom to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 27, 2023
1 parent b91532f commit f457401
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 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
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"devDependencies": {
"@babel/core": "7.20.12",
"@testing-library/dom": "9.2.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/jest-dom": "6.1.6",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/react-beautiful-dnd": "13.1.4",
Expand Down

0 comments on commit f457401

Please sign in to comment.