2828 runs-on : ubuntu-latest
2929 environment : dev # change this to match the dev environment created in settings
3030 steps :
31- - uses : actions/checkout@v3
31+ - uses : actions/checkout@v4
3232
3333 - name : Run extractor without Config Yaml
3434 if : ${{ github.event.inputs.CONFIGURATION_YAML_PATH == 'Extract All APIs' }}
@@ -144,7 +144,7 @@ jobs:
144144 shell : pwsh
145145
146146 - name : publish artifact
147- uses : actions/upload-artifact@v2
147+ uses : actions/upload-artifact@v4
148148 env :
149149 API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH : apimartifacts # change this to the artifacts folder
150150 with :
@@ -155,18 +155,18 @@ jobs:
155155 needs : extract
156156 runs-on : [ubuntu-latest]
157157 steps :
158- - uses : actions/checkout@v3
158+ - uses : actions/checkout@v4
159159
160160 - name : Download artifacts-from-portal
161- uses : actions/download-artifact@v2
161+ uses : actions/download-artifact@v4
162162 env :
163163 API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH : apimartifacts # change this to the artifacts folder
164164 with :
165165 name : artifacts-from-portal
166166 path : " ${{ GITHUB.WORKSPACE }}/${{ env.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }}"
167167
168168 - name : Create artifacts pull request
169- uses : peter-evans/create-pull-request@v3
169+ uses : peter-evans/create-pull-request@v6
170170 env :
171171 API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH : apimartifacts # change this to the artifacts folder
172172 with :
@@ -175,4 +175,4 @@ jobs:
175175 title : " ${{ env.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }} - extract"
176176 body : >
177177 This PR is auto-generated by Github actions workflow
178- labels : extract, automated pr
178+ labels : extract, automated pr
0 commit comments