fix(deps): update module github.com/tdewolff/minify/v2 to v2.24.8 (#243) #153
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: Release Please | |
| permissions: {} | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| release-please: | |
| name: Release Please | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # for create a release | |
| pull-requests: write # for open a pull request | |
| issues: write # for create labels | |
| outputs: | |
| should-release: ${{ steps.release-please.outputs.release_created }} | |
| steps: | |
| - uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0 | |
| id: release-please | |
| with: | |
| release-type: simple | |
| token: ${{ github.token }} | |
| release: | |
| name: Release | |
| if: ${{ needs.release-please.outputs.should-release == 'true' }} | |
| timeout-minutes: 10 | |
| needs: release-please | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # for upload release assets | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup | |
| - uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1 | |
| id: app-token | |
| with: | |
| app-id: ${{ secrets.HOMEBREW_TAP_APP_ID }} | |
| private-key: ${{ secrets.HOMEBREW_TAP_APP_PRIVATE_KEY }} | |
| owner: ${{ github.repository_owner }} | |
| repositories: homebrew-tap | |
| permission-contents: write | |
| - name: release | |
| run: goreleaser release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| TAP_GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} |