mirror of
https://github.com/Homebrew/brew.git
synced 2026-08-12 22:29:27 +04:00
Bumps the github-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [Homebrew/actions/setup-homebrew](https://github.com/homebrew/actions) | `2026.07.29.1` | `2026.08.03.2` | | [Homebrew/actions/cache-homebrew-prefix](https://github.com/homebrew/actions) | `2026.07.29.1` | `2026.08.03.2` | | [Homebrew/actions/setup-ruby](https://github.com/homebrew/actions) | `2026.07.29.1` | `2026.08.03.2` | | [Homebrew/actions/create-or-update-issue](https://github.com/homebrew/actions) | `2026.07.29.1` | `2026.08.03.2` | | [Homebrew/actions/git-user-config](https://github.com/homebrew/actions) | `2026.07.29.1` | `2026.08.03.2` | | [Homebrew/actions/setup-commit-signing](https://github.com/homebrew/actions) | `2026.07.29.1` | `2026.08.03.2` | | [Homebrew/actions/git-try-push](https://github.com/homebrew/actions) | `2026.07.29.1` | `2026.08.03.2` | Updates `Homebrew/actions/setup-homebrew` from 2026.07.29.1 to 2026.08.03.2 - [Release notes](https://github.com/homebrew/actions/releases) - [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts) - [Commits](https://github.com/homebrew/actions/compare/2026.07.29.1...fd832223f9f99ebf0244dd20658680e5d4aca049) Updates `Homebrew/actions/cache-homebrew-prefix` from 2026.07.29.1 to 2026.08.03.2 - [Release notes](https://github.com/homebrew/actions/releases) - [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts) - [Commits](https://github.com/homebrew/actions/compare/2026.07.29.1...fd832223f9f99ebf0244dd20658680e5d4aca049) Updates `Homebrew/actions/setup-ruby` from 2026.07.29.1 to 2026.08.03.2 - [Release notes](https://github.com/homebrew/actions/releases) - [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts) - [Commits](https://github.com/homebrew/actions/compare/9af03b7ae3f9e2ae5c174f659d5c3909f7e7dbac...fd832223f9f99ebf0244dd20658680e5d4aca049) Updates `Homebrew/actions/create-or-update-issue` from 2026.07.29.1 to 2026.08.03.2 - [Release notes](https://github.com/homebrew/actions/releases) - [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts) - [Commits](https://github.com/homebrew/actions/compare/9af03b7ae3f9e2ae5c174f659d5c3909f7e7dbac...fd832223f9f99ebf0244dd20658680e5d4aca049) Updates `Homebrew/actions/git-user-config` from 2026.07.29.1 to 2026.08.03.2 - [Release notes](https://github.com/homebrew/actions/releases) - [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts) - [Commits](https://github.com/homebrew/actions/compare/9af03b7ae3f9e2ae5c174f659d5c3909f7e7dbac...fd832223f9f99ebf0244dd20658680e5d4aca049) Updates `Homebrew/actions/setup-commit-signing` from 2026.07.29.1 to 2026.08.03.2 - [Release notes](https://github.com/homebrew/actions/releases) - [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts) - [Commits](https://github.com/homebrew/actions/compare/9af03b7ae3f9e2ae5c174f659d5c3909f7e7dbac...fd832223f9f99ebf0244dd20658680e5d4aca049) Updates `Homebrew/actions/git-try-push` from 2026.07.29.1 to 2026.08.03.2 - [Release notes](https://github.com/homebrew/actions/releases) - [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts) - [Commits](https://github.com/homebrew/actions/compare/9af03b7ae3f9e2ae5c174f659d5c3909f7e7dbac...fd832223f9f99ebf0244dd20658680e5d4aca049) --- updated-dependencies: - dependency-name: Homebrew/actions/setup-homebrew dependency-version: 2026.08.03.2 dependency-type: direct:production dependency-group: github-actions - dependency-name: Homebrew/actions/cache-homebrew-prefix dependency-version: 2026.08.03.2 dependency-type: direct:production dependency-group: github-actions - dependency-name: Homebrew/actions/setup-ruby dependency-version: 2026.08.03.2 dependency-type: direct:production dependency-group: github-actions - dependency-name: Homebrew/actions/create-or-update-issue dependency-version: 2026.08.03.2 dependency-type: direct:production dependency-group: github-actions - dependency-name: Homebrew/actions/git-user-config dependency-version: 2026.08.03.2 dependency-type: direct:production dependency-group: github-actions - dependency-name: Homebrew/actions/setup-commit-signing dependency-version: 2026.08.03.2 dependency-type: direct:production dependency-group: github-actions - dependency-name: Homebrew/actions/git-try-push dependency-version: 2026.08.03.2 dependency-type: direct:production dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
65 lines
2.0 KiB
YAML
65 lines
2.0 KiB
YAML
# brew tap-new uses this file to generate a bottle publish workflow for the new tap
|
|
name: tap-new publish template
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
pull_request:
|
|
description: Pull request number
|
|
required: true
|
|
head_sha:
|
|
description: Expected pull request head commit SHA (optional)
|
|
|
|
permissions: {}
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash -xeuo pipefail {0}
|
|
|
|
jobs:
|
|
pr-pull:
|
|
if: github.repository == ''
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
checks: read
|
|
contents: write
|
|
issues: read
|
|
# tap-new-github-packages-start
|
|
packages: write
|
|
# tap-new-github-packages-end
|
|
pull-requests: write
|
|
steps:
|
|
- name: Set up Homebrew
|
|
uses: Homebrew/actions/setup-homebrew@fd832223f9f99ebf0244dd20658680e5d4aca049 # 2026.08.03.2
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set up git
|
|
id: git_setup
|
|
uses: Homebrew/actions/git-user-config@fd832223f9f99ebf0244dd20658680e5d4aca049 # 2026.08.03.2
|
|
|
|
- name: Pull bottles
|
|
env:
|
|
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
HOMEBREW_GIT_COMMITTER_NAME: ${{ steps.git_setup.outputs.name }}
|
|
HOMEBREW_GIT_COMMITTER_EMAIL: ${{ steps.git_setup.outputs.email }}
|
|
# tap-new-github-packages-start
|
|
HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
HOMEBREW_GITHUB_PACKAGES_USER: ${{ github.repository_owner }}
|
|
# tap-new-github-packages-end
|
|
HEAD_SHA: ${{ inputs.head_sha }}
|
|
PULL_REQUEST: ${{ inputs.pull_request }}
|
|
run: |
|
|
if [[ -n "$HEAD_SHA" ]]
|
|
then
|
|
brew pr-pull --debug --tap="$GITHUB_REPOSITORY" --head-sha="$HEAD_SHA" "$PULL_REQUEST"
|
|
else
|
|
brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST"
|
|
fi
|
|
|
|
- name: Push commits
|
|
uses: Homebrew/actions/git-try-push@fd832223f9f99ebf0244dd20658680e5d4aca049 # 2026.08.03.2
|
|
with:
|
|
branch: TAP_NEW_BRANCH
|