Build after Dependabot #326
Workflow file for this run
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: 'Build after Dependabot' | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
name: 'Build after Dependabot' | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- name: setup node | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.20' | |
- name: make | |
run: | | |
npm install | |
make -j 2 | |
- name: pages | |
run: web-tests-pages | |
- name: save | |
run: | | |
# Git config | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
git add . | |
git commit --allow-empty -m "rebuild" | |
git push --set-upstream origin ${GITHUB_REF} | |