Skip to content

Commit 5489427

Browse files
Bump mongodb-labs/drivers-github-tools from 2 to 3
Bumps [mongodb-labs/drivers-github-tools](https://github.com/mongodb-labs/drivers-github-tools) from 2 to 3. - [Release notes](https://github.com/mongodb-labs/drivers-github-tools/releases) - [Commits](mongodb-labs/drivers-github-tools@v2...v3) --- updated-dependencies: - dependency-name: mongodb-labs/drivers-github-tools dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 18566f7 commit 5489427

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/build-windows-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ jobs:
8383

8484
steps:
8585
- name: "Generate token and checkout repository"
86-
uses: mongodb-labs/drivers-github-tools/secure-checkout@v2
86+
uses: mongodb-labs/drivers-github-tools/secure-checkout@v3
8787
with:
8888
app_id: ${{ vars.APP_ID }}
8989
private_key: ${{ secrets.APP_PRIVATE_KEY }}
9090
ref: ${{ inputs.ref }}
9191

9292
- name: "Set up drivers-github-tools"
93-
uses: mongodb-labs/drivers-github-tools/setup@v2
93+
uses: mongodb-labs/drivers-github-tools/setup@v3
9494
with:
9595
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
9696
aws_region_name: ${{ vars.AWS_REGION_NAME }}
@@ -108,7 +108,7 @@ jobs:
108108
php_mongodb.pdb
109109
110110
- name: "Create detached DLL signature"
111-
uses: mongodb-labs/drivers-github-tools/gpg-sign@v2
111+
uses: mongodb-labs/drivers-github-tools/gpg-sign@v3
112112
with:
113113
filenames: php_mongodb.dll
114114

.github/workflows/package-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424

2525
steps:
2626
- name: "Generate token and checkout repository"
27-
uses: mongodb-labs/drivers-github-tools/secure-checkout@v2
27+
uses: mongodb-labs/drivers-github-tools/secure-checkout@v3
2828
with:
2929
app_id: ${{ vars.APP_ID }}
3030
private_key: ${{ secrets.APP_PRIVATE_KEY }}
3131
ref: ${{ inputs.ref }}
3232
submodules: true
3333

3434
- name: "Set up drivers-github-tools"
35-
uses: mongodb-labs/drivers-github-tools/setup@v2
35+
uses: mongodb-labs/drivers-github-tools/setup@v3
3636
with:
3737
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
3838
aws_region_name: ${{ vars.AWS_REGION_NAME }}
@@ -68,7 +68,7 @@ jobs:
6868
echo "PACKAGE_FILE=mongodb-${PACKAGE_VERSION}.tgz" >> "$GITHUB_ENV"
6969
7070
- name: "Create detached signature for PECL package"
71-
uses: mongodb-labs/drivers-github-tools/gpg-sign@v2
71+
uses: mongodb-labs/drivers-github-tools/gpg-sign@v3
7272
with:
7373
filenames: ${{ env.PACKAGE_FILE }}
7474

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ jobs:
6060
run: echo '🎬 Release process for version ${{ inputs.version }} started by @${{ github.triggering_actor }}' >> $GITHUB_STEP_SUMMARY
6161

6262
- name: "Generate token and checkout repository"
63-
uses: mongodb-labs/drivers-github-tools/secure-checkout@v2
63+
uses: mongodb-labs/drivers-github-tools/secure-checkout@v3
6464
with:
6565
app_id: ${{ vars.APP_ID }}
6666
private_key: ${{ secrets.APP_PRIVATE_KEY }}
6767
submodules: true
6868
fetch-depth: 0
6969

7070
- name: "Set up drivers-github-tools"
71-
uses: mongodb-labs/drivers-github-tools/setup@v2
71+
uses: mongodb-labs/drivers-github-tools/setup@v3
7272
with:
7373
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
7474
aws_region_name: ${{ vars.AWS_REGION_NAME }}
@@ -80,7 +80,7 @@ jobs:
8080
php-version: "${{ matrix.php-version }}"
8181

8282
- name: "Create package commit"
83-
uses: mongodb-labs/drivers-github-tools/bump-version@v2
83+
uses: mongodb-labs/drivers-github-tools/bump-version@v3
8484
with:
8585
version: ${{ inputs.version }}
8686
# Note: this script will fail and abort if the requested version can't be released
@@ -90,15 +90,15 @@ jobs:
9090
push_commit: false
9191

9292
- name: "Create release tag"
93-
uses: mongodb-labs/drivers-github-tools/tag-version@v2
93+
uses: mongodb-labs/drivers-github-tools/tag-version@v3
9494
with:
9595
version: ${{ inputs.version }}
9696
tag_message_template: 'Release ${VERSION}'
9797
# Don't push tag, we'll do that after merging up
9898
push_tag: false
9999

100100
- name: "Bump to next development release and commit"
101-
uses: mongodb-labs/drivers-github-tools/bump-version@v2
101+
uses: mongodb-labs/drivers-github-tools/bump-version@v3
102102
with:
103103
version: ${{ inputs.version }}
104104
version_bump_script: "./bin/update-release-version.php to-next-dev"
@@ -187,15 +187,15 @@ jobs:
187187

188188
steps:
189189
- name: "Generate token and checkout repository"
190-
uses: mongodb-labs/drivers-github-tools/secure-checkout@v2
190+
uses: mongodb-labs/drivers-github-tools/secure-checkout@v3
191191
with:
192192
app_id: ${{ vars.APP_ID }}
193193
private_key: ${{ secrets.APP_PRIVATE_KEY }}
194194
ref: refs/tags/${{ inputs.version }}
195195

196196
# Sets the S3_ASSETS environment variable used later
197197
- name: "Set up drivers-github-tools"
198-
uses: mongodb-labs/drivers-github-tools/setup@v2
198+
uses: mongodb-labs/drivers-github-tools/setup@v3
199199
with:
200200
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
201201
aws_region_name: ${{ vars.AWS_REGION_NAME }}
@@ -209,7 +209,7 @@ jobs:
209209
run: gh release download ${{ inputs.version }} --dir ${{ env.RELEASE_ASSETS }}
210210

211211
- name: "Generate SSDLC Reports"
212-
uses: mongodb-labs/drivers-github-tools/full-report@v2
212+
uses: mongodb-labs/drivers-github-tools/full-report@v3
213213
with:
214214
product_name: "MongoDB PHP Driver (extension)"
215215
release_version: ${{ inputs.version }}
@@ -220,7 +220,7 @@ jobs:
220220
run: gh release upload ${{ inputs.version }} ${{ env.S3_ASSETS }}/cyclonedx.sbom.json
221221

222222
- name: Upload S3 assets
223-
uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v2
223+
uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v3
224224
with:
225225
version: ${{ inputs.version }}
226226
product_name: mongo-php-driver

0 commit comments

Comments
 (0)