Skip to content

Update dev tools (major) #263

Update dev tools (major)

Update dev tools (major) #263

Workflow file for this run

---
name: Update rebar.lock
"on":
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: {}
merge_group:
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
branch:
outputs:
head_ref: ${{steps.branch.outputs.head_ref}}
runs-on: ubuntu-24.04
steps:
- id: branch
run: |
head_ref=${GITHUB_HEAD_REF}
echo "head_ref is ${head_ref}"
echo "head_ref=${head_ref}" > "${GITHUB_OUTPUT}"
update:
name: Update rebar.lock
needs: [branch]
if: endsWith(needs.branch.outputs.head_ref, 'rebar.config-deps')
runs-on: ubuntu-24.04
steps:
- uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
id: app-token
with:
app-id: ${{vars.GHA_LITTLE_HELPER_APP_ID}}
private-key: ${{secrets.GHA_LITTLE_HELPER_PRIVATE_KEY}}
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
token: ${{steps.app-token.outputs.token}}
ref: ${{needs.branch.outputs.head_ref}}
- uses: erlef/setup-beam@e6d7c94229049569db56a7ad5a540c051a010af9 # v1.20.4
with:
version-type: strict
version-file: .tool-versions
- run: |
rebar3 upgrade --all
if ! git diff --exit-code >/dev/null; then
# there's stuff to push
git config user.name "gha-little-helper"
git config user.email "[email protected]"
git add rebar.lock
git commit -m "[automation] update \`rebar.lock\` after Renovate"
git push
fi
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}