@@ -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 }}
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