Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,12 @@ jobs:
needs: compliance
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: terraform-provider-mongodbatlas-checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- uses: ./.github/templates/run-script-and-commit
with:
repository: mongodb/terraform-provider-mongodbatlas
ref: master
- uses: mongodb/terraform-provider-mongodbatlas/.github/templates/run-script-and-commit@master
Copy link

Copilot AI Sep 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using '@master' as a reference is not recommended for production workflows as it can introduce unpredictable changes. Consider pinning to a specific commit SHA or using a tagged version for better stability and reproducibility.

Suggested change
- uses: mongodb/terraform-provider-mongodbatlas/.github/templates/run-script-and-commit@master
- uses: mongodb/terraform-provider-mongodbatlas/.github/templates/run-script-and-commit@e2e2b7e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2

Copilot uses AI. Check for mistakes.

with:
script_call: |
TAG="${{ inputs.version_number }}"
Expand Down