@@ -60,15 +60,15 @@ jobs:
60
60
run : echo '🎬 Release process for version ${{ inputs.version }} started by @${{ github.triggering_actor }}' >> $GITHUB_STEP_SUMMARY
61
61
62
62
- 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
64
64
with :
65
65
app_id : ${{ vars.APP_ID }}
66
66
private_key : ${{ secrets.APP_PRIVATE_KEY }}
67
67
submodules : true
68
68
fetch-depth : 0
69
69
70
70
- name : " Set up drivers-github-tools"
71
- uses : mongodb-labs/drivers-github-tools/setup@v2
71
+ uses : mongodb-labs/drivers-github-tools/setup@v3
72
72
with :
73
73
aws_role_arn : ${{ secrets.AWS_ROLE_ARN }}
74
74
aws_region_name : ${{ vars.AWS_REGION_NAME }}
80
80
php-version : " ${{ matrix.php-version }}"
81
81
82
82
- name : " Create package commit"
83
- uses : mongodb-labs/drivers-github-tools/bump-version@v2
83
+ uses : mongodb-labs/drivers-github-tools/bump-version@v3
84
84
with :
85
85
version : ${{ inputs.version }}
86
86
# Note: this script will fail and abort if the requested version can't be released
@@ -90,15 +90,15 @@ jobs:
90
90
push_commit : false
91
91
92
92
- name : " Create release tag"
93
- uses : mongodb-labs/drivers-github-tools/tag-version@v2
93
+ uses : mongodb-labs/drivers-github-tools/tag-version@v3
94
94
with :
95
95
version : ${{ inputs.version }}
96
96
tag_message_template : ' Release ${VERSION}'
97
97
# Don't push tag, we'll do that after merging up
98
98
push_tag : false
99
99
100
100
- 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
102
102
with :
103
103
version : ${{ inputs.version }}
104
104
version_bump_script : " ./bin/update-release-version.php to-next-dev"
@@ -187,15 +187,15 @@ jobs:
187
187
188
188
steps :
189
189
- 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
191
191
with :
192
192
app_id : ${{ vars.APP_ID }}
193
193
private_key : ${{ secrets.APP_PRIVATE_KEY }}
194
194
ref : refs/tags/${{ inputs.version }}
195
195
196
196
# Sets the S3_ASSETS environment variable used later
197
197
- name : " Set up drivers-github-tools"
198
- uses : mongodb-labs/drivers-github-tools/setup@v2
198
+ uses : mongodb-labs/drivers-github-tools/setup@v3
199
199
with :
200
200
aws_role_arn : ${{ secrets.AWS_ROLE_ARN }}
201
201
aws_region_name : ${{ vars.AWS_REGION_NAME }}
@@ -209,7 +209,7 @@ jobs:
209
209
run : gh release download ${{ inputs.version }} --dir ${{ env.RELEASE_ASSETS }}
210
210
211
211
- name : " Generate SSDLC Reports"
212
- uses : mongodb-labs/drivers-github-tools/full-report@v2
212
+ uses : mongodb-labs/drivers-github-tools/full-report@v3
213
213
with :
214
214
product_name : " MongoDB PHP Driver (extension)"
215
215
release_version : ${{ inputs.version }}
@@ -220,7 +220,7 @@ jobs:
220
220
run : gh release upload ${{ inputs.version }} ${{ env.S3_ASSETS }}/cyclonedx.sbom.json
221
221
222
222
- 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
224
224
with :
225
225
version : ${{ inputs.version }}
226
226
product_name : mongo-php-driver
0 commit comments