Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions .github/workflows/release-5.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobs:
- uses: actions/checkout@v5

- name: Install Node and dependencies
uses: mongodb-labs/drivers-github-tools/node/setup@v2
uses: mongodb-labs/drivers-github-tools/node/setup@v3
with:
ignore_install_scripts: false

- name: Load version and package info
uses: mongodb-labs/drivers-github-tools/node/get_version_info@v2
uses: mongodb-labs/drivers-github-tools/node/get_version_info@v3
with:
npm_package_name: bson

- name: actions/compress_sign_and_upload
uses: mongodb-labs/drivers-github-tools/node/sign_node_package@v2
uses: mongodb-labs/drivers-github-tools/node/sign_node_package@v3
with:
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
aws_region_name: us-east-1
Expand All @@ -65,13 +65,13 @@ jobs:
# only used for mongodb-client-encryption
- name: Augment SBOM and copy to release assets
if: ${{ '' != '' }}
uses: mongodb-labs/drivers-github-tools/sbom@v2
uses: mongodb-labs/drivers-github-tools/sbom@v3
with:
silk_asset_group: ''
sbom_file_name: sbom.json

- name: Generate authorized pub report
uses: mongodb-labs/drivers-github-tools/full-report@v2
uses: mongodb-labs/drivers-github-tools/full-report@v3
with:
release_version: ${{ env.package_version }}
product_name: bson
Expand All @@ -83,7 +83,7 @@ jobs:
evergreen_project: js-bson
evergreen_commit: ${{ env.commit }}

- uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v2
- uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v3
with:
version: ${{ env.package_version }}
product_name: bson
Expand All @@ -97,7 +97,7 @@ jobs:
- uses: actions/checkout@v5

- name: Install Node and dependencies
uses: mongodb-labs/drivers-github-tools/node/setup@v2
uses: mongodb-labs/drivers-github-tools/node/setup@v3

- run: npm publish --provenance --tag=5x
if: ${{ needs.release_please.outputs.release_created }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release-6.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobs:
- uses: actions/checkout@v5

- name: Install Node and dependencies
uses: mongodb-labs/drivers-github-tools/node/setup@v2
uses: mongodb-labs/drivers-github-tools/node/setup@v3
with:
ignore_install_scripts: false

- name: Load version and package info
uses: mongodb-labs/drivers-github-tools/node/get_version_info@v2
uses: mongodb-labs/drivers-github-tools/node/get_version_info@v3
with:
npm_package_name: bson

- name: actions/compress_sign_and_upload
uses: mongodb-labs/drivers-github-tools/node/sign_node_package@v2
uses: mongodb-labs/drivers-github-tools/node/sign_node_package@v3
with:
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
aws_region_name: us-east-1
Expand All @@ -65,13 +65,13 @@ jobs:
# only used for mongodb-client-encryption
- name: Augment SBOM and copy to release assets
if: ${{ '' != '' }}
uses: mongodb-labs/drivers-github-tools/sbom@v2
uses: mongodb-labs/drivers-github-tools/sbom@v3
with:
silk_asset_group: ''
sbom_file_name: sbom.json

- name: Generate authorized pub report
uses: mongodb-labs/drivers-github-tools/full-report@v2
uses: mongodb-labs/drivers-github-tools/full-report@v3
with:
release_version: ${{ env.package_version }}
product_name: bson
Expand All @@ -83,7 +83,7 @@ jobs:
evergreen_project: js-bson
evergreen_commit: ${{ env.commit }}

- uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v2
- uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v3
with:
version: ${{ env.package_version }}
product_name: bson
Expand All @@ -97,7 +97,7 @@ jobs:
- uses: actions/checkout@v5

- name: Install Node and dependencies
uses: mongodb-labs/drivers-github-tools/node/setup@v2
uses: mongodb-labs/drivers-github-tools/node/setup@v3

- run: npm publish --provenance --tag legacy
if: ${{ needs.release_please.outputs.release_created }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v5

- name: Install Node and dependencies
uses: mongodb-labs/drivers-github-tools/node/setup@v2
uses: mongodb-labs/drivers-github-tools/node/setup@v3

- run: npm version "${{ inputs.alphaVersion }}" --git-tag-version=false
- run: npm publish --provenance --tag=alpha
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobs:
- uses: actions/checkout@v5

- name: Install Node and dependencies
uses: mongodb-labs/drivers-github-tools/node/setup@v2
uses: mongodb-labs/drivers-github-tools/node/setup@v3
with:
ignore_install_scripts: false

- name: Load version and package info
uses: mongodb-labs/drivers-github-tools/node/get_version_info@v2
uses: mongodb-labs/drivers-github-tools/node/get_version_info@v3
with:
npm_package_name: bson

- name: actions/compress_sign_and_upload
uses: mongodb-labs/drivers-github-tools/node/sign_node_package@v2
uses: mongodb-labs/drivers-github-tools/node/sign_node_package@v3
with:
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
aws_region_name: us-east-1
Expand All @@ -65,13 +65,13 @@ jobs:
# only used for mongodb-client-encryption
- name: Augment SBOM and copy to release assets
if: ${{ '' != '' }}
uses: mongodb-labs/drivers-github-tools/sbom@v2
uses: mongodb-labs/drivers-github-tools/sbom@v3
with:
silk_asset_group: ''
sbom_file_name: sbom.json

- name: Generate authorized pub report
uses: mongodb-labs/drivers-github-tools/full-report@v2
uses: mongodb-labs/drivers-github-tools/full-report@v3
with:
release_version: ${{ env.package_version }}
product_name: bson
Expand All @@ -83,7 +83,7 @@ jobs:
evergreen_project: js-bson
evergreen_commit: ${{ env.commit }}

- uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v2
- uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v3
with:
version: ${{ env.package_version }}
product_name: bson
Expand All @@ -97,7 +97,7 @@ jobs:
- uses: actions/checkout@v5

- name: Install Node and dependencies
uses: mongodb-labs/drivers-github-tools/node/setup@v2
uses: mongodb-labs/drivers-github-tools/node/setup@v3

- run: npm publish --provenance --tag=alpha
if: ${{ needs.release_please.outputs.release_created }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

# Setup Node.js and npm install
- name: Install Node and dependencies
uses: mongodb-labs/drivers-github-tools/node/setup@v2
uses: mongodb-labs/drivers-github-tools/node/setup@v3


# See: https://github.com/googleapis/release-please/issues/1274
Expand Down