Skip to content

build(dependencies): bump the github-actions group across 1 directory… #24

build(dependencies): bump the github-actions group across 1 directory…

build(dependencies): bump the github-actions group across 1 directory… #24

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
actionlinter:
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #4.2.2
- name: Lint GitHub Actions
uses: docker://rhysd/actionlint:1.7.1
with:
options: -v $(pwd):/repo --workdir /repo
args: -color
release:
runs-on: ubuntu-latest
needs:
- actionlinter
steps:
- uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #4.2.2
with:
token: ${{ secrets.WEAREFRANK_BOT_PAT }}
- name: Setup Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af #4.1.0
with:
node-version: 20.x
- name: Install dependencies
run: yarn global add semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github @semantic-release/exec @semantic-release/release-notes-generator @semantic-release/commit-analyzer conventional-changelog-conventionalcommits
- name: Semantic Release
run: semantic-release
env:
GITHUB_TOKEN: ${{ secrets.WEAREFRANK_BOT_PAT }}
GH_TOKEN: ${{ secrets.WEAREFRANK_BOT_PAT }}