⬆️ Bump cryptography from 46.0.4 to 46.0.5 in /docker/team-sync #84
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
| # Generated by cdkactions. Do not modify | |
| # Generated as part of the 'team-sync' stack. | |
| name: Publish team-sync | |
| on: | |
| push: | |
| paths: | |
| - docker/team-sync/** | |
| jobs: | |
| publish-team-sync: | |
| name: Publish team-sync | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: docker/setup-qemu-action@v3 | |
| - uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: buildx-publish-team-sync | |
| - uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Build/Publish | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: docker/team-sync | |
| file: docker/team-sync/Dockerfile | |
| push: ${{ github.ref == 'refs/heads/master' }} | |
| cache-from: type=local,src=/tmp/.buildx-cache,type=registry,ref=pennlabs/team-sync:latest | |
| cache-to: type=local,dest=/tmp/.buildx-cache | |
| tags: pennlabs/team-sync:latest,pennlabs/team-sync:${{ github.sha }} |