mirror of
https://github.com/anchore/grype
synced 2024-11-10 14:44:12 +00:00
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
name: PR for latest Syft release
|
|
on:
|
|
schedule:
|
|
- cron: "0 8 * * *" # 3 AM EST
|
|
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
GO_VERSION: "1.18.x"
|
|
GO_STABLE_VERSION: true
|
|
|
|
jobs:
|
|
upgrade-syft:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'anchore/grype' # only run for main repo
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
stable: ${{ env.GO_STABLE_VERSION }}
|
|
|
|
- run: |
|
|
LATEST_VERSION=$(curl "https://api.github.com/repos/anchore/syft/releases/latest" 2>/dev/null | jq -r '.tag_name')
|
|
|
|
# update go.mod
|
|
go get github.com/anchore/syft@$LATEST_VERSION
|
|
|
|
# export the version for use with create-pull-request
|
|
echo "::set-output name=LATEST_VERSION::$LATEST_VERSION"
|
|
id: latest-version
|
|
|
|
- uses: tibdex/github-app-token@v1
|
|
id: generate-token
|
|
with:
|
|
app_id: ${{ secrets.TOKEN_APP_ID }}
|
|
private_key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
|
|
|
|
- uses: peter-evans/create-pull-request@v4
|
|
with:
|
|
signoff: true
|
|
delete-branch: true
|
|
branch: auto/latest
|
|
labels: dependencies
|
|
commit-message: "Update Syft to ${{ steps.latest-version.outputs.LATEST_VERSION }}"
|
|
title: "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 }}
|