Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
steps:
- 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 run check:dependencies
14 changes: 7 additions & 7 deletions .github/workflows/release-5.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ jobs:
ref: '5.x'

- 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: mongodb

- 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 @@ -67,13 +67,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: mongodb
Expand All @@ -85,7 +85,7 @@ jobs:
evergreen_project: mongo-node-driver-next
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: mongodb
Expand All @@ -101,7 +101,7 @@ jobs:
ref: '5.x'

- 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.8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ jobs:
ref: '6.8'

- 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: mongodb

- 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 @@ -67,13 +67,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: mongodb
Expand All @@ -85,7 +85,7 @@ jobs:
evergreen_project: mongo-node-driver-next
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: mongodb
Expand All @@ -101,7 +101,7 @@ jobs:
ref: '6.8'

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

# Just picking a string to put here so that releases from this branch are not marked "latest",
# we should go and rm-dist-tag after this is published, no reason to keep it tagged.
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 @@ -27,7 +27,7 @@ jobs:
fi
- 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
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- 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
- id: build_nightly
run: npm run build:nightly
- if: ${{ steps.build_nightly.outputs.publish == 'yes' }}
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: mongodb

- 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: mongodb
Expand All @@ -83,7 +83,7 @@ jobs:
evergreen_project: mongo-node-driver-next
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: mongodb
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=latest
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