Bump distroless/nodejs24-debian13 from 7a22f30 to 2e3b3a9 in /baseimages in the distroless group
#3719
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: pr | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| inputs: | |
| plugins: | |
| description: "Plugins to build and publish (i.e. connect-go:latest, connect-go, grpc/java:v1.53.0)" | |
| default: '' | |
| type: string | |
| # Prevent writing to the repository using the CI token. | |
| # Ref: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions | |
| permissions: read-all | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| pr: | |
| env: | |
| BUILDKIT_PROGRESS: plain | |
| DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
| runs-on: ubuntu-latest-4-cores | |
| steps: | |
| - name: set PLUGINS from workflow inputs | |
| if: ${{ inputs.plugins }} | |
| run: echo "PLUGINS=${{ inputs.plugins }}" >> $GITHUB_ENV | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: 'go.mod' | |
| check-latest: true | |
| - name: Calculate changed plugins and set PLUGINS env var from base branch | |
| if: ${{ inputs.plugins == '' }} | |
| env: | |
| BASE_REF: ${{ github.base_ref }} | |
| run: | | |
| val=$(go run ./internal/cmd/changed-plugins --base-ref "origin/${BASE_REF}" --include-testdata) | |
| if [[ -n "${val}" && -z "${PLUGINS}" ]]; then | |
| echo "PLUGINS=${val}" >> $GITHUB_ENV | |
| fi | |
| - name: Get buf version | |
| shell: bash | |
| run: | | |
| echo BUF_VERSION=$(go list -m -f '{{.Version}}' github.com/bufbuild/buf | cut -c2-) >> $GITHUB_ENV | |
| - uses: bufbuild/buf-action@v1 | |
| with: | |
| setup_only: true | |
| - uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 | |
| - name: Login to Docker Hub | |
| if: ${{ env.DOCKERHUB_USERNAME != '' }} | |
| uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Cache golangci-lint | |
| uses: actions/cache@v6 | |
| with: | |
| path: | | |
| .tmp/golangci-lint | |
| .tmp/golangci-lint-* | |
| key: golangci-lint-${{ runner.os }}-${{ hashFiles('Makefile') }} | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make test | |
| - name: Archive plugin generated code | |
| uses: actions/upload-artifact@v7 | |
| if: ${{ failure() }} | |
| with: | |
| name: plugin-generated-code | |
| path: | | |
| tests/testdata/**/gen/** | |
| retention-days: 3 |