-
Notifications
You must be signed in to change notification settings - Fork 533
Update release refs for 2.20-stable #2956
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 2.20-stable
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Updates the release workflow to use the canonical drivers-github-tools repository and stable tag, and removes unused Silk-related configuration.
- Switch actions from jamis/drivers-github-tools to mongodb-labs/drivers-github-tools and pin to v3
- Remove SILK_ASSET_GROUP env and silk_asset_group input from publish job
- Delete the now-unused .github/release.yml (comment-only file)
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| .github/workflows/release.yml | Points workflow steps to mongodb-labs/drivers-github-tools@v3 and drops Silk-specific env/input. |
| .github/release.yml | Removes a comment-only file related to auto-generated release notes. |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| - name: "Run the check action" | ||
| id: check | ||
| uses: jamis/drivers-github-tools/ruby/pr-check@ruby-3643-update-release-process | ||
| uses: mongodb-labs/drivers-github-tools/ruby/pr-check@v3 |
Copilot
AI
Oct 16, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pin GitHub Actions to a specific commit SHA instead of a floating tag (v3) to prevent supply chain attacks. Example: uses: mongodb-labs/drivers-github-tools/ruby/pr-check@ with a comment noting the corresponding tag.
| uses: mongodb-labs/drivers-github-tools/ruby/pr-check@v3 | |
| # v3.2.1 | |
| uses: mongodb-labs/drivers-github-tools/ruby/pr-check@c0ffee1234567890abcdef1234567890abcdef12 |
| steps: | ||
| - name: "Run the build action" | ||
| uses: jamis/drivers-github-tools/ruby/build@ruby-3643-update-release-process | ||
| uses: mongodb-labs/drivers-github-tools/ruby/build@v3 |
Copilot
AI
Oct 16, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pin this action to a full commit SHA rather than the v3 tag to reduce the risk of tag hijacking. Example: uses: mongodb-labs/drivers-github-tools/ruby/build@ and optionally annotate the tag in a comment.
| uses: mongodb-labs/drivers-github-tools/ruby/build@v3 | |
| # v3 tag | |
| uses: mongodb-labs/drivers-github-tools/ruby/build@a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0 |
| steps: | ||
| - name: "Run the publish action" | ||
| uses: jamis/drivers-github-tools/ruby/publish@ruby-3643-update-release-process | ||
| uses: mongodb-labs/drivers-github-tools/ruby/publish@v3 |
Copilot
AI
Oct 16, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly, pin the publish action to a specific commit SHA instead of the v3 tag to ensure immutability of the workflow dependency.
| uses: mongodb-labs/drivers-github-tools/ruby/publish@v3 | |
| uses: mongodb-labs/drivers-github-tools/ruby/publish@a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0 |
Update the release references to point to the canonical repo and tag