@@ -60,10 +60,10 @@ For example, testing new versions of code being committed to a branch to ensure
6060
6161``` yaml
6262 - name : Checkout repo
63- uses : actions/checkout@v3
63+ uses : actions/checkout@v6
6464
6565 - name : Configure AWS credentials
66- uses : aws-actions/configure-aws-credentials@v2 # More information on this action can be found below in the 'AWS Credentials' section
66+ uses : aws-actions/configure-aws-credentials@v6 # More information on this action can be found below in the 'AWS Credentials' section
6767 with :
6868 role-to-assume : arn:aws:iam::123456789012:role/my-github-actions-role
6969 aws-region : us-west-2
@@ -74,7 +74,7 @@ For example, testing new versions of code being committed to a branch to ensure
7474` ` ` yaml
7575 - name : Schedule Device Farm Automated Test
7676 id : run-test
77- uses : aws-actions/aws-devicefarm-mobile-device-testing@v2.0
77+ uses : aws-actions/aws-devicefarm-mobile-device-testing@v3
7878 with :
7979 run-settings-json : |
8080 {
@@ -90,7 +90,7 @@ For example, testing new versions of code being committed to a branch to ensure
9090 }
9191 artifact-types : ALL
9292
93- - uses : actions/upload-artifact@v3
93+ - uses : actions/upload-artifact@v7
9494 if : always() # This ensures the artifacts are uploaded even if the Test Run Fails
9595 with :
9696 name : AutomatedTestOutputFiles
@@ -102,7 +102,7 @@ For example, testing new versions of code being committed to a branch to ensure
102102` ` ` yaml
103103 - name : Schedule Device Farm Automated Test
104104 id : run-test
105- uses : aws-actions/aws-devicefarm-mobile-device-testing@v2.0
105+ uses : aws-actions/aws-devicefarm-mobile-device-testing@v3
106106 with :
107107 run-settings-json : |
108108 {
@@ -118,7 +118,7 @@ For example, testing new versions of code being committed to a branch to ensure
118118 }
119119 artifact-types : VIDEO,SCREENSHOT
120120
121- - uses : actions/upload-artifact@v3
121+ - uses : actions/upload-artifact@v7
122122 if : always() # This ensures the artifacts are uploaded even if the Test Run Fails
123123 with :
124124 name : AutomatedTestOutputFiles
@@ -130,7 +130,7 @@ For example, testing new versions of code being committed to a branch to ensure
130130` ` ` yaml
131131 - name : Schedule Device Farm Automated Test
132132 id : run-test
133- uses : aws-actions/aws-devicefarm-mobile-device-testing@v2.0
133+ uses : aws-actions/aws-devicefarm-mobile-device-testing@v3
134134 with :
135135 run-settings-json : |
136136 {
@@ -156,14 +156,14 @@ This action relies on the [default behaviour of the AWS SDK for JavaScript](http
156156
157157` ` ` yaml
158158 - name: Configure AWS credentials
159- uses: aws-actions/configure-aws-credentials@v2
159+ uses: aws-actions/configure-aws-credentials@v6
160160 with:
161161 role-to-assume: arn:aws:iam::123456789012:role/my-github-actions-role
162162 aws-region: us-west-2
163163
164164 - name: Schedule Device Farm Automated Test
165165 id: run-test
166- uses: aws-actions/aws-devicefarm-mobile-device-testing@v2.0
166+ uses: aws-actions/aws-devicefarm-mobile-device-testing@v3
167167 with:
168168 run-settings-json: |
169169 {
0 commit comments