mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
07991dec83
Pin actions/checkout usage to latest 3.x or 4.x as appropriate. These were previously pointing to `@4` or `@3` which pull in the latest versions at these tags as they are released, with the potential to break our workflows if a breaking change or malicious version for either of these streams are released. Changing this to a pinned version also means that dependabot will keep this in the pinend version format (e.g., referencing a SHA) when it opens a PR to bump the dependency. Updates #cleanup Signed-off-by: Mario Minardi <mario@tailscale.com>
50 lines
1.6 KiB
YAML
50 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
- name: Run update-flakes
|
|
run: ./update-flake.sh
|
|
|
|
- name: Get access token
|
|
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 # v1.8.0
|
|
id: generate-token
|
|
with:
|
|
app_id: ${{ secrets.LICENSING_APP_ID }}
|
|
installation_id: ${{ secrets.LICENSING_APP_INSTALLATION_ID }}
|
|
private_key: ${{ secrets.LICENSING_APP_PRIVATE_KEY }}
|
|
|
|
- name: Send pull request
|
|
uses: peter-evans/create-pull-request@8867c4aba1b742c39f8d0ba35429c2dfa4b6cb20 #v7.0.1
|
|
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
|