Skip to content

Github Actions Security Best practices: Pin Actions to Full lenght Co… #1454

Github Actions Security Best practices: Pin Actions to Full lenght Co…

Github Actions Security Best practices: Pin Actions to Full lenght Co… #1454

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Build Regen
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
permissions:
contents: write # for peter-evans/create-pull-request to create branch
pull-requests: write # for peter-evans/create-pull-request to create a PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
persist-credentials: false
- name: Set up JDK
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2
with:
distribution: 'temurin'
java-version: 17
cache: 'maven'
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: 1.20.x
- name: Build catalog 1st Run
run: ./mvnw clean install -DskipTests
- name: Build catalog 2nd Run
run: ./mvnw clean install
- name: Run Generator
run: |
echo "Running Kamelet Generator..."
cd script/generator
go run . ../../kamelets/ ../../docs/modules/ROOT/
- name: Create Pull Request
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
with:
base: main
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Regen for commit ${{ github.sha }}"
committer: GitHub <noreply@github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: true
branch: regen_bot
title: "Generated sources regen"
body: |
Regen bot :robot: found some uncommited changes after running build on :camel: kamelets main.
Please do not delete `regen_bot` branch after merge/rebase.
labels: |
regen
automated pr
assignees: oscerd