build(deps): bump the non-majors group with 18 updates #1017
Workflow file for this run
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: preview | |
| on: | |
| # pull_request_target を使うにあたって https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ の一読を推奨 | |
| pull_request_target: | |
| permissions: | |
| packages: write | |
| jobs: | |
| build-dashboard-image: | |
| name: Build Dashboard Image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set PR_NUMBER env | |
| run: echo "PR_NUMBER=${{ github.event.number }}" >> $GITHUB_ENV | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| persist-credentials: false | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Builder instance name | |
| run: echo ${{ steps.buildx.outputs.name }} | |
| - name: Available platforms | |
| run: echo ${{ steps.buildx.outputs.platforms }} | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: traptitech | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: dashboard | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| # NOTE: once https://github.com/argoproj/argo-cd/pull/13199 is released we can use short sha | |
| tags: ghcr.io/traptitech/ns-dashboard:preview-${{ env.PR_NUMBER }}-${{ github.event.pull_request.head.sha }} | |
| cache-from: type=registry,ref=ghcr.io/traptitech/ns-dashboard:buildcache | |
| build-sablier-image: | |
| name: Build Sablier Image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set PR_NUMBER env | |
| run: echo "PR_NUMBER=${{ github.event.number }}" >> $GITHUB_ENV | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| persist-credentials: false | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Builder instance name | |
| run: echo ${{ steps.buildx.outputs.name }} | |
| - name: Available platforms | |
| run: echo ${{ steps.buildx.outputs.platforms }} | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: traptitech | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: sablier | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: ghcr.io/traptitech/ns-sablier:preview-${{ env.PR_NUMBER }}-${{ github.event.pull_request.head.sha }} | |
| cache-from: type=registry,ref=ghcr.io/traptitech/ns-sablier:buildcache |