chore: bump patch versions and fix security vulnerabilities (#703) #121
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: build-and-push-devcontainer | |
| permissions: | |
| contents: read | |
| packages: write | |
| concurrency: | |
| group: merge-main | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| CACHE_IMAGE_PREFIX: ghcr.io/${{ github.repository }} | |
| jobs: | |
| # Build and cache devcontainer for faster CI stages | |
| devcontainer-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout (GitHub) | |
| uses: actions/checkout@v4 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and cache devcontainer | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| # Change this to point to your image name | |
| imageName: ${{ env.CACHE_IMAGE_PREFIX }}/cached-devcontainer | |
| cacheFrom: ${{ env.CACHE_IMAGE_PREFIX }}/cached-devcontainer | |
| push: always | |
| # Change this to be your CI task/script | |
| # runCmd: pnpm install --filter @thunderbird/tbpro-add-on |