Skip to content

Bump golangci/golangci-lint-action from 6.5.2 to 8.0.0 (#145) #7

Bump golangci/golangci-lint-action from 6.5.2 to 8.0.0 (#145)

Bump golangci/golangci-lint-action from 6.5.2 to 8.0.0 (#145) #7

---
# This workflow uses actions that are not certified by GitHub. They are provided
# by a third-party and are governed by separate terms of service, privacy
# policy, and support documentation.
name: Auto-update on push
on:
workflow_dispatch:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Declare default permissions as read only.
permissions: read-all
jobs:
update_on_push_job:
runs-on: ubuntu-latest
name: Auto-update on push
permissions:
contents: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
objects.githubusercontent.com:443
registry.npmjs.org:443
- name: Install Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "20"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Generate Changelog
uses: orhun/git-cliff-action@4a4a951bc43fafe41cd2348d181853f52356bee7 # v4.4.2
with:
config: cliff.toml
args: --verbose
env:
OUTPUT: CHANGELOG.md
- name: Remove git-cliff artifacts
run: |
rm -Rf git-cliff*
- name: Generate artifacts
run: |
# Generate list of authors
./scripts/generate-contributors.sh
- name: Git commit if changed
run: |
git config user.name "Northwood Labs (Bot)"
git config user.email "bot@northwood-labs.com"
set +e
git add .
git status | grep modified
if [ $? -eq 0 ]; then
git commit -a -m "automation: Updated AUTHORS and CHANGELOG on $(date)."
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git main
fi