mirror of
https://github.com/anchore/grype
synced 2024-11-10 14:44:12 +00:00
8b34b585ca
Bumps [tibdex/github-app-token](https://github.com/tibdex/github-app-token) from 1.8.2 to 2.0.0.
- [Release notes](https://github.com/tibdex/github-app-token/releases)
- [Commits](0d49dd7211...0914d50df7
)
---
updated-dependencies:
- dependency-name: tibdex/github-app-token
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>
57 lines
1.8 KiB
YAML
57 lines
1.8 KiB
YAML
name: PR for latest Syft release
|
|
on:
|
|
schedule:
|
|
- cron: "0 8 * * *" # 3 AM EST
|
|
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
GO_VERSION: "1.21.x"
|
|
GO_STABLE_VERSION: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
upgrade-syft:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'anchore/grype' # only run for main repo
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v2.5.0
|
|
|
|
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
stable: ${{ env.GO_STABLE_VERSION }}
|
|
|
|
- name: Get latest Syft version
|
|
id: latest-version
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
run: |
|
|
LATEST_VERSION=$(gh release view --json name -q '.name' -R anchore/syft)
|
|
|
|
# update go.mod
|
|
go get github.com/anchore/syft@$LATEST_VERSION
|
|
go mod tidy
|
|
|
|
# export the version for use with create-pull-request
|
|
echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_OUTPUT
|
|
|
|
- uses: tibdex/github-app-token@0914d50df753bbc42180d982a6550f195390069f # v2.0.0
|
|
id: generate-token
|
|
with:
|
|
app_id: ${{ secrets.TOKEN_APP_ID }}
|
|
private_key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
|
|
|
|
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2
|
|
with:
|
|
signoff: true
|
|
delete-branch: true
|
|
branch: auto/latest-syft
|
|
labels: dependencies
|
|
commit-message: "chore(deps): update Syft to ${{ steps.latest-version.outputs.LATEST_VERSION }}"
|
|
title: "chore(deps): update Syft to ${{ steps.latest-version.outputs.LATEST_VERSION }}"
|
|
body: |
|
|
Update Syft to ${{ steps.latest-version.outputs.LATEST_VERSION }}
|
|
token: ${{ steps.generate-token.outputs.token }}
|