chore: update and pin GHA deps #19
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: Deployment | |
| on: | |
| push: | |
| # run only against version tags | |
| tags: | |
| - "v*" | |
| permissions: {} | |
| jobs: | |
| goreleaser: | |
| permissions: | |
| contents: write | |
| # Generates the Github release, and updates the simonwhitaker/tap/gibo | |
| # Homebrew formula | |
| runs-on: ubuntu-latest | |
| steps: | |
| - &checkout_step | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - &fetch_tags_step | |
| run: git fetch --force --tags | |
| - &setup_go_step | |
| uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 | |
| with: | |
| go-version-file: go.mod | |
| cache: false | |
| - &create_github_app_token_step | |
| name: Create GitHub App token | |
| uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 | |
| id: github-app-token | |
| with: | |
| client-id: ${{ vars.RELEASE_APP_ID }} | |
| private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }} | |
| owner: ${{ github.repository_owner }} | |
| repositories: | | |
| gibo | |
| homebrew-tap | |
| # More assembly might be required: Docker logins, GPG, etc. It all depends | |
| # on your needs. | |
| - uses: goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8 # v7.2.1 | |
| with: | |
| # either 'goreleaser' (default) or 'goreleaser-pro': | |
| distribution: goreleaser | |
| version: latest | |
| args: release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ steps.github-app-token.outputs.token }} | |
| goreleaser-windows: | |
| # Generates the Windows artefacts for the release, updates the gibo | |
| # chocolatey package | |
| permissions: | |
| contents: write | |
| runs-on: windows-latest | |
| steps: | |
| - *checkout_step | |
| - *fetch_tags_step | |
| - *setup_go_step | |
| - *create_github_app_token_step | |
| # More assembly might be required: Docker logins, GPG, etc. It all depends | |
| # on your needs. | |
| - uses: goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8 # v7.2.1 | |
| with: | |
| # either 'goreleaser' (default) or 'goreleaser-pro': | |
| distribution: goreleaser | |
| version: latest | |
| args: release -f .goreleaser.windows.yaml --clean | |
| env: | |
| GITHUB_TOKEN: ${{ steps.github-app-token.outputs.token }} | |
| CHOCOLATEY_API_KEY: ${{ secrets.CHOCOLATEY_API_KEY }} | |
| docker_hub: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Check Dockerfile Go version sync | |
| run: ./tools/sync-go-version.sh --check | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0 | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Extract metadata (tags, labels) for Docker | |
| id: meta | |
| uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0 | |
| with: | |
| images: simonwhitaker/gibo | |
| - name: Build and push Docker image | |
| uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0 | |
| with: | |
| context: . | |
| platforms: linux/amd64,linux/arm64 | |
| file: ./Dockerfile | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| - name: Update Docker Hub description | |
| uses: peter-evans/dockerhub-description@1b9a80c056b620d92cedb9d9b5a223409c68ddfa # v5.0.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| repository: simonwhitaker/gibo |