Bump django-auth-ldap from 2.2.0 to 5.3.0 in /cvat/requirements (#10761) #3366
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Cache | |
| on: | |
| push: | |
| branches: | |
| - 'develop' | |
| jobs: | |
| get-sha: | |
| uses: ./.github/workflows/search-cache.yml | |
| Caching_CVAT: | |
| needs: get-sha | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REPO: ${{ github.repository }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 | |
| id: server-cache-action | |
| with: | |
| path: /tmp/cvat_cache_server | |
| key: ${{ runner.os }}-build-server-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-build-server-${{ needs.get-sha.outputs.sha }} | |
| ${{ runner.os }}-build-server- | |
| - uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 | |
| id: ui-cache-action | |
| with: | |
| path: /tmp/cvat_cache_ui | |
| key: ${{ runner.os }}-build-ui-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-build-ui-${{ needs.get-sha.outputs.sha }} | |
| ${{ runner.os }}-build-ui- | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 | |
| - name: Caching CVAT Server | |
| uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 | |
| with: | |
| context: . | |
| file: ./Dockerfile | |
| cache-from: type=local,src=/tmp/cvat_cache_server | |
| cache-to: type=local,dest=/tmp/cvat_cache_server-new | |
| - name: Caching CVAT UI | |
| uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 | |
| with: | |
| context: . | |
| file: ./Dockerfile.ui | |
| cache-from: type=local,src=/tmp/cvat_cache_ui | |
| cache-to: type=local,dest=/tmp/cvat_cache_ui-new | |
| - name: Moving cache | |
| run: | | |
| rm -rf /tmp/cvat_cache_server | |
| mv /tmp/cvat_cache_server-new /tmp/cvat_cache_server | |
| rm -rf /tmp/cvat_cache_ui | |
| mv /tmp/cvat_cache_ui-new /tmp/cvat_cache_ui |