mirror of
https://github.com/discourse/discourse.git
synced 2026-08-11 02:59:07 +08:00
Bundler 4 records its version in the `CHECKSUMS` section. Dependabot writes a newer bundler patch there than `BUNDLED WITH`, leaving checksum row out of sync. That was failing "Bundler checksums" step on all ruby Dependabot PRs. (See related: [dependabot-core#15045](https://github.com/dependabot/dependabot-core/issues/15045), [rubygems#9512](https://github.com/ruby/rubygems/issues/9512)) This workflow re-normalizes `Gemfile.lock` with our version of bundler after Dependabot messes with it.
46 lines
1.3 KiB
YAML
Vendored
46 lines
1.3 KiB
YAML
Vendored
name: Bundler checksums on Dependabot PRs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "dependabot/bundler/**/*"
|
|
paths:
|
|
- "Gemfile.lock"
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
normalize:
|
|
name: Normalize
|
|
if: github.actor == 'dependabot[bot]'
|
|
runs-on: ${{ (github.repository_owner == 'discourse' && 'cdck-linux-8-core') || 'ubuntu-latest' }}
|
|
container: discourse/discourse_test:release
|
|
|
|
steps:
|
|
- name: Set working directory owner
|
|
run: chown root:root .
|
|
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 1
|
|
token: ${{ secrets.GH_PUSH_TOKEN }}
|
|
|
|
# Dependabot writes a newer `bundler` checksum than `BUNDLED WITH`; rewrite
|
|
# it with the image's bundler so the linting check passes. See
|
|
# https://github.com/ruby/rubygems/issues/9512
|
|
- name: Normalize Gemfile.lock
|
|
env:
|
|
BUNDLE_FROZEN: "false"
|
|
BUNDLE_DEPLOYMENT: "false"
|
|
run: |
|
|
bundle lock --add-checksums
|
|
bundle lock --normalize-platforms
|
|
|
|
- name: Git push
|
|
run: |
|
|
git config --global user.email "team@discourse.org"
|
|
git config --global user.name "discoursebot"
|
|
git add Gemfile.lock
|
|
git status
|
|
git commit -m "Normalize Gemfile.lock checksums [dependabot skip]" && git push || echo "done"
|