chore(deps): bump actions/setup-go from 5.0.1 to 5.0.2 (#77) #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: auto-tag | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/*.yml | |
- auto-tagger/** | |
- "!.github/workflows/local-*.yml" | |
concurrency: | |
group: ghas-auto-tagger-${{ github.ref }} | |
jobs: | |
auto-tag: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
# v4.1.7 | |
- name: Get changed files for each workflow and action | |
id: changed-files | |
uses: tj-actions/changed-files@cc733854b1f224978ef800d29e4709d5ee2883e4 | |
# v44.5.5 | |
with: | |
files_yaml: | | |
docker-build-and-push: | |
- .github/workflows/docker-build-and-push.yml | |
gitleaks: | |
- .github/workflows/gitleaks.yml | |
go-ci: | |
- .github/workflows/go-ci.yml | |
go-security-scan: | |
- .github/workflows/go-security-scan.yml | |
infra-security-scan: | |
- .github/workflows/infra-security-scan.yml | |
python-ci: | |
- .github/workflows/python-ci.yml | |
rust-ci: | |
- .github/workflows/rust-ci.yml | |
auto-tagger: | |
- auto-tagger/** | |
- name: Run auto-tag if docker-build-and-push workflow changes | |
if: steps.changed-files.outputs.docker-build-and-push_any_changed == 'true' | |
# kics-scan ignore-line | |
uses: notdodo/github-actions/auto-tagger@auto-tagger-v0 | |
with: | |
bind_to_major: true | |
default_bump_strategy: skip | |
default_branch: main | |
path: .github/workflows/docker-build-and-push.yml | |
prefix: docker-build-and-push-v | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: false | |
- name: Run auto-tag if gitleaks workflow changes | |
if: steps.changed-files.outputs.gitleaks_any_changed == 'true' | |
# kics-scan ignore-line | |
uses: notdodo/github-actions/auto-tagger@auto-tagger-v0 | |
with: | |
bind_to_major: true | |
default_bump_strategy: skip | |
default_branch: main | |
path: .github/workflows/gitleaks.yml | |
prefix: gitleaks-v | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: false | |
- name: Run auto-tag if go-ci workflow changes | |
if: steps.changed-files.outputs.go-ci_any_changed == 'true' | |
# kics-scan ignore-line | |
uses: notdodo/github-actions/auto-tagger@auto-tagger-v0 | |
with: | |
bind_to_major: true | |
default_bump_strategy: skip | |
default_branch: main | |
path: .github/workflows/go-ci.yml | |
prefix: go-ci-v | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: false | |
- name: Run auto-tag if go-security-scan workflow changes | |
if: steps.changed-files.outputs.go-security-scan_any_changed == 'true' | |
# kics-scan ignore-line | |
uses: notdodo/github-actions/auto-tagger@auto-tagger-v0 | |
with: | |
bind_to_major: true | |
default_bump_strategy: skip | |
default_branch: main | |
path: .github/workflows/go-security-scan.yml | |
prefix: go-sec-v | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: false | |
- name: Run auto-tag if infra-security-scan workflow changes | |
if: steps.changed-files.outputs.infra-security-scan_any_changed == 'true' | |
# kics-scan ignore-line | |
uses: notdodo/github-actions/auto-tagger@auto-tagger-v0 | |
with: | |
bind_to_major: true | |
default_bump_strategy: skip | |
default_branch: main | |
path: .github/workflows/infra-security-scan.yml | |
prefix: infra-scan-v | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: false | |
- name: Run auto-tag if python-ci workflow changes | |
if: steps.changed-files.outputs.python-ci_any_changed == 'true' | |
# kics-scan ignore-line | |
uses: notdodo/github-actions/auto-tagger@auto-tagger-v0 | |
with: | |
bind_to_major: true | |
default_bump_strategy: skip | |
default_branch: main | |
path: .github/workflows/python-ci.yml | |
prefix: python-ci-v | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: false | |
- name: Run auto-tag if rust-ci workflow changes | |
if: steps.changed-files.outputs.rust-ci_any_changed == 'true' | |
# kics-scan ignore-line | |
uses: notdodo/github-actions/auto-tagger@auto-tagger-v0 | |
with: | |
bind_to_major: true | |
default_bump_strategy: skip | |
default_branch: main | |
path: .github/workflows/rust-ci.yml | |
prefix: rust-ci-v | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: false | |
- name: Run auto-tag if auto-tagger action changes | |
if: steps.changed-files.outputs.auto-tagger_any_changed == 'true' | |
# kics-scan ignore-line | |
uses: notdodo/github-actions/auto-tagger@auto-tagger-v0 | |
with: | |
bind_to_major: true | |
default_bump_strategy: skip | |
default_branch: main | |
path: ./auto-tagger/ | |
prefix: auto-tagger-v | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: false |