Compare commits

..

No commits in common. 'b7c02adb2da328c52ea54826595b3c8239b149b6' and 'bcd0dfa73b7a54d5dae0248214f7593119751634' have entirely different histories.

@ -1,15 +1,5 @@
on: [push, pull_request]
name: Build Test
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read

@ -1,7 +1,6 @@
name: "Pull Request Labeler"
on:
pull_request_target:
- pull_request_target
permissions:
contents: read
@ -13,6 +12,6 @@ jobs:
pull-requests: write # for actions/labeler to add labels to PRs
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4.3.0
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4.3.0
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

@ -2,14 +2,8 @@ name: Golangci-lint
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read

@ -1,9 +1,8 @@
name: Release
on:
schedule:
- cron: '0 1 1 * *' # UTC 01:00 on the first day of the Month
- cron: '0 1 1 * *' # UTC 01:00 on the first day of the Month
name: Release
permissions:
contents: write

@ -2,8 +2,8 @@ name: SBOM Generator
on:
push:
branches:
- master
branches: [ "master" ]
workflow_dispatch:
permissions: read-all
@ -11,8 +11,10 @@ permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: advanced-security/sbom-generator-action@6fe43abf522b2e7a19bc769aec1e6c848614b517 # v0.0.2
id: sbom
env:

@ -1,15 +1,5 @@
on: [push, pull_request]
name: Shellcheck
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
@ -18,6 +8,6 @@ jobs:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # v2.0.0
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # v2.0.0

@ -1,15 +1,5 @@
on: [push, pull_request]
name: Test
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read

Loading…
Cancel
Save