-
Notifications
You must be signed in to change notification settings - Fork 30
41 lines (39 loc) · 1.66 KB
/
update-syft-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: PR for latest Syft release
on:
schedule:
# 7:04 UTC (2:04 am EST)
- cron: "4 7 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
upgrade-syft:
runs-on: ubuntu-latest
if: github.repository == 'anchore/sbom-action'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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)
echo "export const VERSION = \"$LATEST_VERSION\";" > src/SyftVersion.ts
# install husky hooks and dependencies:
npm install
# export the version for use with create-pull-request:
echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_OUTPUT
- uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
id: generate-token
with:
app_id: ${{ secrets.TOKEN_APP_ID }}
private_key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
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 }}