mirror of
https://github.com/anchore/syft.git
synced 2026-02-12 18:46:41 +01:00
Bumps the actions-minor-patch group with 2 updates in the / directory: [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) and [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action). Updates `peter-evans/create-pull-request` from 8.0.0 to 8.1.0 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](98357b18bf...c0f553fe54) Updates `zizmorcore/zizmor-action` from 0.3.0 to 0.4.1 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](e639db9933...135698455d) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-minor-patch - dependency-name: zizmorcore/zizmor-action dependency-version: 0.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.6 KiB
YAML
52 lines
1.6 KiB
YAML
name: PR to update Anchore dependencies
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
repos:
|
|
description: "List of dependencies to update"
|
|
required: true
|
|
type: string
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository_owner == 'anchore' # only run for main repo (not forks)
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Bootstrap environment
|
|
uses: ./.github/actions/bootstrap
|
|
with:
|
|
tools: false
|
|
bootstrap-apt-packages: ""
|
|
|
|
- name: Update dependencies
|
|
id: update
|
|
uses: anchore/workflows/.github/actions/update-go-dependencies@main
|
|
with:
|
|
repos: ${{ github.event.inputs.repos }}
|
|
|
|
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf #v2.2.1
|
|
id: generate-token
|
|
with:
|
|
app-id: ${{ secrets.TOKEN_APP_ID }}
|
|
private-key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
|
|
|
|
- uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 #v8.1.0
|
|
with:
|
|
signoff: true
|
|
delete-branch: true
|
|
draft: ${{ steps.update.outputs.draft }}
|
|
# do not change this branch, as other workflows depend on it
|
|
branch: auto/integration
|
|
labels: dependencies,pre-release
|
|
commit-message: "chore(deps): update anchore dependencies"
|
|
title: "chore(deps): update anchore dependencies"
|
|
body: ${{ steps.update.outputs.summary }}
|
|
token: ${{ steps.generate-token.outputs.token }}
|