mirror of
https://github.com/tailscale/tailscale.git
synced 2025-02-18 02:48:40 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.6.0...11bd71901bbe5b1630ceea73d27597364c9af683) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
name: update-flake
|
|
|
|
on:
|
|
# run action when a change lands in the main branch which updates go.mod. Also
|
|
# allow manual triggering.
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- go.mod
|
|
- .github/workflows/update-flakes.yml
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
update-flake:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Run update-flakes
|
|
run: ./update-flake.sh
|
|
|
|
- name: Get access token
|
|
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
|
|
id: generate-token
|
|
with:
|
|
app_id: ${{ secrets.LICENSING_APP_ID }}
|
|
installation_retrieval_mode: "id"
|
|
installation_retrieval_payload: ${{ secrets.LICENSING_APP_INSTALLATION_ID }}
|
|
private_key: ${{ secrets.LICENSING_APP_PRIVATE_KEY }}
|
|
|
|
- name: Send pull request
|
|
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f #v7.0.6
|
|
with:
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
author: Flakes Updater <noreply+flakes-updater@tailscale.com>
|
|
committer: Flakes Updater <noreply+flakes-updater@tailscale.com>
|
|
branch: flakes
|
|
commit-message: "go.mod.sri: update SRI hash for go.mod changes"
|
|
title: "go.mod.sri: update SRI hash for go.mod changes"
|
|
body: Triggered by ${{ github.repository }}@${{ github.sha }}
|
|
signoff: true
|
|
delete-branch: true
|
|
reviewers: danderson
|