-
Notifications
You must be signed in to change notification settings - Fork 68
Description
π€ This is an automated PR from Repo Assist.
Summary
Two small engineering improvements to CI/CD infrastructure:
-
Add Dependabot config (
.github/dependabot.yml) β enables weekly automatic version update PRs for GitHub Actions used in.github/workflows/. This will keepactions/checkout,actions/setup-dotnet,Particular/install-sql-server-actionetc. current without manual monitoring. -
Bump
actions/setup-dotnetfromv3βv4β v4 is the current stable release and the canonical version recommended by GitHub. v3 is still functional but receiving only security fixes.
Changes
.github/dependabot.ymlβ new file; weekly schedule forgithub-actionsecosystem.github/workflows/dotnet-core.ymlβ one-line bump:setup-dotnet@v3βsetup-dotnet@v4
Test Status
Documentation/config-only changes β no source code or test files modified. The workflow uses windows-latest with SQL Server, so CI cannot be triggered from this environment. The actions/setup-dotnet@v4 API is backwards-compatible; the dotnet-version: 8.0.100 input is unchanged.
Generated by Repo Assist Β· β·
To install this agentic workflow, run
gh aw add githubnext/agentics/workflows/repo-assist.md@346204513ecfa08b81566450d7d599556807389f
Warning
π‘οΈ Protected Files β Push Permission Denied
This was originally intended as a pull request, but the patch modifies protected files: .github/dependabot.yml, .github/workflows/dotnet-core.yml.
The push was rejected because GitHub Actions does not have workflows permission to push these changes, and is never allowed to make such changes, or other authorization being used does not have this permission. A human must create the pull request manually.
To create a pull request with the changes:
# Download the patch from the workflow run
gh run download 22870339272 -n agent-artifacts -D /tmp/agent-artifacts-22870339272
# Create a new branch
git checkout -b repo-assist/eng-dependabot-actions-20260309-6d55cadbee0aadf1 master
# Apply the patch (--3way handles cross-repo patches)
git am --3way /tmp/agent-artifacts-22870339272/aw-repo-assist-eng-dependabot-actions-20260309.patch
# Push the branch and create the pull request
git push origin repo-assist/eng-dependabot-actions-20260309-6d55cadbee0aadf1
gh pr create --title '[Repo Assist] eng: add Dependabot config for GitHub Actions; bump setup-dotnet to v4' --base master --head repo-assist/eng-dependabot-actions-20260309-6d55cadbee0aadf1 --repo fsprojects/FSharp.Data.SqlClient