Skip to content

Commit 634ee94

Browse files
WaterLemons2kmchammer01myarb
authored
chore: use node16 for actions (#24540)
Co-authored-by: mc <42146119+mchammer01@users.noreply.github.com> Co-authored-by: Melanie Yarbrough <11952755+myarb@users.noreply.github.com>
1 parent 3942166 commit 634ee94

File tree

34 files changed

+80
-80
lines changed

34 files changed

+80
-80
lines changed

content/actions/automating-builds-and-tests/building-and-testing-java-with-gradle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
java-version: '17'
7070
distribution: 'temurin'
7171
- name: Validate Gradle wrapper
72-
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
72+
uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3
7373
- name: Build with Gradle
7474
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
7575
with:
@@ -105,7 +105,7 @@ steps:
105105
java-version: '17'
106106
distribution: 'temurin'
107107
- name: Validate Gradle wrapper
108-
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
108+
uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3
109109
- name: Run the Gradle package task
110110
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
111111
with:
@@ -136,7 +136,7 @@ steps:
136136
java-version: '17'
137137
distribution: 'temurin'
138138
- name: Validate Gradle wrapper
139-
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
139+
uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3
140140
- name: Build with Gradle
141141
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
142142
with:

content/actions/automating-builds-and-tests/building-and-testing-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ The following example caches dependencies for pnpm (v6.10+).
267267
268268
steps:
269269
- uses: {% data reusables.actions.action-checkout %}
270-
- uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2
270+
- uses: pnpm/action-setup@0609f0983b7a228f052f81ef4c3d6510cae254ad
271271
with:
272272
version: 6.10.0
273273
- uses: {% data reusables.actions.action-setup-node %}

content/actions/automating-builds-and-tests/building-and-testing-ruby.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
steps:
5757
- uses: {% data reusables.actions.action-checkout %}
5858
- name: Set up Ruby
59-
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
59+
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
6060
with:
6161
ruby-version: '3.1'
6262
- name: Install dependencies
@@ -76,7 +76,7 @@ The `setup-ruby` action takes a Ruby version as an input and configures that ver
7676
```yaml
7777
steps:
7878
- uses: {% data reusables.actions.action-checkout %}
79-
- uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
79+
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
8080
with:
8181
ruby-version: '3.1' # Not needed with a .ruby-version file
8282
- run: bundle install
@@ -126,7 +126,7 @@ jobs:
126126
steps:
127127
- uses: {% data reusables.actions.action-checkout %}
128128
- name: {% raw %}Set up Ruby ${{ matrix.ruby-version }}{% endraw %}
129-
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
129+
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
130130
with:
131131
ruby-version: {% raw %}${{ matrix.ruby-version }}{% endraw %}
132132
- name: Install dependencies
@@ -142,7 +142,7 @@ The `setup-ruby` action will automatically install bundler for you. The version
142142
```yaml
143143
steps:
144144
- uses: {% data reusables.actions.action-checkout %}
145-
- uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
145+
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
146146
with:
147147
ruby-version: '3.1'
148148
- run: bundle install
@@ -159,7 +159,7 @@ To enable caching, set the following.
159159
{% raw %}
160160
```yaml
161161
steps:
162-
- uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
162+
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
163163
with:
164164
bundler-cache: true
165165
```
@@ -231,7 +231,7 @@ jobs:
231231
continue-on-error: {% raw %}${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}{% endraw %}
232232
steps:
233233
- uses: {% data reusables.actions.action-checkout %}
234-
- uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
234+
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
235235
with:
236236
ruby-version: {% raw %}${{ matrix.ruby }}{% endraw %}
237237
- run: bundle install
@@ -256,7 +256,7 @@ jobs:
256256
runs-on: ubuntu-latest
257257
steps:
258258
- uses: {% data reusables.actions.action-checkout %}
259-
- uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
259+
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
260260
with:
261261
ruby-version: 2.6
262262
- run: bundle install
@@ -297,7 +297,7 @@ jobs:
297297
steps:
298298
- uses: {% data reusables.actions.action-checkout %}
299299
- name: Set up Ruby 2.6
300-
uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
300+
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
301301
with:
302302
ruby-version: 2.6
303303
- run: bundle install

content/actions/automating-builds-and-tests/building-and-testing-swift.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
swift: ["5.2", "5.3"]
8888
runs-on: {% raw %}${{ matrix.os }}{% endraw %}
8989
steps:
90-
- uses: fwal/setup-swift@2040b795e5c453c3a05fcb8316496afc8a74f192
90+
- uses: fwal/setup-swift@ffb5a44dd03d3d22fb26f48fa43e43fa4ce655a7
9191
with:
9292
swift-version: {% raw %}${{ matrix.swift }}{% endraw %}
9393
- uses: {% data reusables.actions.action-checkout %}
@@ -104,7 +104,7 @@ You can configure your job to use a single specific version of Swift, such as `5
104104
{% raw %}
105105
```yaml{:copy}
106106
steps:
107-
- uses: fwal/setup-swift@2040b795e5c453c3a05fcb8316496afc8a74f192
107+
- uses: fwal/setup-swift@ffb5a44dd03d3d22fb26f48fa43e43fa4ce655a7
108108
with:
109109
swift-version: "5.3.3"
110110
- name: Get swift version
@@ -119,7 +119,7 @@ You can use the same commands that you use locally to build and test your code u
119119
```yaml{:copy}
120120
steps:
121121
- uses: {% data reusables.actions.action-checkout %}
122-
- uses: fwal/setup-swift@2040b795e5c453c3a05fcb8316496afc8a74f192
122+
- uses: fwal/setup-swift@ffb5a44dd03d3d22fb26f48fa43e43fa4ce655a7
123123
with:
124124
swift-version: "5.3.3"
125125
- name: Build

content/actions/creating-actions/about-custom-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Each Git commit receives a calculated SHA value, which is unique and immutable.
137137
138138
```yaml
139139
steps:
140-
- uses: actions/javascript-action@172239021f7ba04fe7327647b213799853a9eb89
140+
- uses: actions/javascript-action@a824008085750b8e136effc585c3cd6082bd575f
141141
```
142142
143143
## Creating a README file for your action

content/actions/creating-actions/creating-a-javascript-action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ The time we greeted you.
160160
## Example usage
161161
162162
```yaml
163-
uses: actions/hello-world-javascript-action@v1.1
163+
uses: actions/hello-world-javascript-action@e76147da8e5c81eaf017dede5645551d4b94427b
164164
with:
165165
who-to-greet: 'Mona the Octocat'
166166
```

content/actions/creating-actions/metadata-syntax-for-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ runs:
322322
using: "composite"
323323
steps:
324324
# Reference a specific commit
325-
- uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
325+
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
326326
# Reference the major version of a release
327327
- uses: {% data reusables.actions.action-checkout %}
328328
# Reference a specific version

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,15 @@ jobs:
123123
uses: {% data reusables.actions.action-checkout %}
124124
125125
{% raw %}- name: Configure AWS credentials
126-
uses: aws-actions/configure-aws-credentials@13d241b293754004c80624b5567555c4a39ffbe3
126+
uses: aws-actions/configure-aws-credentials@0e613a0980cbf65ed5b322eb7a1e075d28913a83
127127
with:
128128
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
129129
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
130130
aws-region: ${{ env.AWS_REGION }}
131131
132132
- name: Login to Amazon ECR
133133
id: login-ecr
134-
uses: aws-actions/amazon-ecr-login@aaf69d68aa3fb14c1d5a6be9ac61fe15b48453a2
134+
uses: aws-actions/amazon-ecr-login@62f4f872db3836360b72999f4b87f1ff13310f3a
135135
136136
- name: Build, tag, and push image to Amazon ECR
137137
id: build-image
@@ -152,14 +152,14 @@ jobs:
152152
153153
- name: Fill in the new image ID in the Amazon ECS task definition
154154
id: task-def
155-
uses: aws-actions/amazon-ecs-render-task-definition@97587c9d45a4930bf0e3da8dd2feb2a463cf4a3a
155+
uses: aws-actions/amazon-ecs-render-task-definition@c804dfbdd57f713b6c079302a4c01db7017a36fc
156156
with:
157157
task-definition: ${{ env.ECS_TASK_DEFINITION }}
158158
container-name: ${{ env.CONTAINER_NAME }}
159159
image: ${{ steps.build-image.outputs.image }}
160160
161161
- name: Deploy Amazon ECS task definition
162-
uses: aws-actions/amazon-ecs-deploy-task-definition@de0132cf8cdedb79975c6d42b77eb7ea193cf28e
162+
uses: aws-actions/amazon-ecs-deploy-task-definition@df9643053eda01f169e64a0e60233aacca83799a
163163
with:
164164
task-definition: ${{ steps.task-def.outputs.task-definition }}
165165
service: ${{ env.ECS_SERVICE }}

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-docker-to-azure-app-service.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ jobs:
105105
- uses: {% data reusables.actions.action-checkout %}
106106
107107
- name: Set up Docker Buildx
108-
uses: docker/setup-buildx-action@v1
108+
uses: docker/setup-buildx-action@v2
109109
110110
- name: Log in to GitHub container registry
111-
uses: docker/login-action@v1.10.0
111+
uses: docker/login-action@v2
112112
with:
113113
registry: ghcr.io
114114
username: {% raw %}${{ github.actor }}{% endraw %}
@@ -118,7 +118,7 @@ jobs:
118118
run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
119119
120120
- name: Build and push container image to registry
121-
uses: docker/build-push-action@v2
121+
uses: docker/build-push-action@v4
122122
with:
123123
push: true
124124
tags: ghcr.io/{% raw %}${{ env.REPO }}{% endraw %}:{% raw %}${{ github.sha }}{% endraw %}
@@ -139,7 +139,7 @@ jobs:
139139
140140
- name: Deploy to Azure Web App
141141
id: deploy-to-webapp
142-
uses: azure/webapps-deploy@0b651ed7546ecfc75024011f76944cb9b381ef1e
142+
uses: azure/webapps-deploy@05ac4e98bfa0f856e6669624239291c73ca27698
143143
with:
144144
app-name: {% raw %}${{ env.AZURE_WEBAPP_NAME }}{% endraw %}
145145
publish-profile: {% raw %}${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}{% endraw %}

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-java-to-azure-app-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
118118
- name: Deploy to Azure Web App
119119
id: deploy-to-webapp
120-
uses: azure/webapps-deploy@0b651ed7546ecfc75024011f76944cb9b381ef1e
120+
uses: azure/webapps-deploy@05ac4e98bfa0f856e6669624239291c73ca27698
121121
with:
122122
app-name: {% raw %}${{ env.AZURE_WEBAPP_NAME }}{% endraw %}
123123
publish-profile: {% raw %}${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}{% endraw %}

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-net-to-azure-app-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
128128
- name: Deploy to Azure Web App
129129
id: deploy-to-webapp
130-
uses: azure/webapps-deploy@0b651ed7546ecfc75024011f76944cb9b381ef1e
130+
uses: azure/webapps-deploy@05ac4e98bfa0f856e6669624239291c73ca27698
131131
with:
132132
app-name: {% raw %}${{ env.AZURE_WEBAPP_NAME }}{% endraw %}
133133
publish-profile: {% raw %}${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}{% endraw %}

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-nodejs-to-azure-app-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
123123
- name: 'Deploy to Azure WebApp'
124124
id: deploy-to-webapp
125-
uses: azure/webapps-deploy@0b651ed7546ecfc75024011f76944cb9b381ef1e
125+
uses: azure/webapps-deploy@05ac4e98bfa0f856e6669624239291c73ca27698
126126
with:
127127
app-name: {% raw %}${{ env.AZURE_WEBAPP_NAME }}{% endraw %}
128128
publish-profile: {% raw %}${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}{% endraw %}

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-php-to-azure-app-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
9595
- name: Check if composer.json exists
9696
id: check_files
97-
uses: andstor/file-existence-action@v1
97+
uses: andstor/file-existence-action@v2
9898
with:
9999
files: 'composer.json'
100100
@@ -142,7 +142,7 @@ jobs:
142142
143143
- name: 'Deploy to Azure Web App'
144144
id: deploy-to-webapp
145-
uses: azure/webapps-deploy@0b651ed7546ecfc75024011f76944cb9b381ef1e
145+
uses: azure/webapps-deploy@05ac4e98bfa0f856e6669624239291c73ca27698
146146
with:
147147
app-name: {% raw %}${{ env.AZURE_WEBAPP_NAME }}{% endraw %}
148148
publish-profile: {% raw %}${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}{% endraw %}

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-python-to-azure-app-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
136136
- name: 'Deploy to Azure Web App'
137137
id: deploy-to-webapp
138-
uses: azure/webapps-deploy@0b651ed7546ecfc75024011f76944cb9b381ef1e
138+
uses: azure/webapps-deploy@05ac4e98bfa0f856e6669624239291c73ca27698
139139
with:
140140
app-name: {% raw %}${{ env.AZURE_WEBAPP_NAME }}{% endraw %}
141141
publish-profile: {% raw %}${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}{% endraw %}

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-kubernetes-service.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,28 +78,28 @@ jobs:
7878
- uses: {% data reusables.actions.action-checkout %}
7979
8080
- name: Azure Login
81-
uses: azure/login@89d153571fe9a34ed70fcf9f1d95ab8debea7a73
81+
uses: azure/login@14a755a4e2fd6dff25794233def4f2cf3f866955
8282
with:
8383
creds: {% raw %}${{ secrets.AZURE_CREDENTIALS }}{% endraw %}
8484
8585
- name: Build image on ACR
86-
uses: azure/CLI@7378ce2ca3c38b4b063feb7a4cbe384fef978055
86+
uses: azure/CLI@61bb69d64d613b52663984bf12d6bac8fd7b3cc8
8787
with:
8888
azcliversion: 2.29.1
8989
inlineScript: |
9090
az configure --defaults acr={% raw %}${{ env.AZURE_CONTAINER_REGISTRY }}{% endraw %}
9191
az acr build -t -t {% raw %}${{ env.REGISTRY_URL }}{% endraw %}/{% raw %}${{ env.PROJECT_NAME }}{% endraw %}:{% raw %}${{ github.sha }}{% endraw %}
9292
9393
- name: Gets K8s context
94-
uses: azure/aks-set-context@4e5aec273183a197b181314721843e047123d9fa
94+
uses: azure/aks-set-context@94ccc775c1997a3fcfbfbce3c459fec87e0ab188
9595
with:
9696
creds: {% raw %}${{ secrets.AZURE_CREDENTIALS }}{% endraw %}
9797
resource-group: {% raw %}${{ env.RESOURCE_GROUP }}{% endraw %}
9898
cluster-name: {% raw %}${{ env.CLUSTER_NAME }}{% endraw %}
9999
id: login
100100
101101
- name: Configure deployment
102-
uses: azure/k8s-bake@773b6144a3732e3bf4c78b146a0bb9617b2e016b
102+
uses: azure/k8s-bake@61041e8c2f75c1f01186c8f05fb8b24e1fc507d8
103103
with:
104104
renderEngine: 'helm'
105105
helmChart: {% raw %}${{ env.CHART_PATH }}{% endraw %}
@@ -110,7 +110,7 @@ jobs:
110110
id: bake
111111
112112
- name: Deploys application
113-
- uses: Azure/k8s-deploy@c8fbd76ededaad2799c054a9fd5d0fa5d4e9aee4
113+
- uses: Azure/k8s-deploy@dd4bbd13a5abd2fc9ca8bdcb8aee152bb718fa78
114114
with:
115115
manifests: {% raw %}${{ steps.bake.outputs.manifestsBundle }}{% endraw %}
116116
images: |

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-google-kubernetes-engine.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
uses: {% data reusables.actions.action-checkout %}
165165
166166
# Setup gcloud CLI
167-
- uses: google-github-actions/setup-gcloud@94337306dda8180d967a56932ceb4ddcf01edae7
167+
- uses: google-github-actions/setup-gcloud@1bee7de035d65ec5da40a31f8589e240eba8fde5
168168
with:
169169
service_account_key: {% raw %}${{ secrets.GKE_SA_KEY }}{% endraw %}
170170
project_id: {% raw %}${{ secrets.GKE_PROJECT }}{% endraw %}
@@ -175,7 +175,7 @@ jobs:
175175
gcloud --quiet auth configure-docker
176176
177177
# Get the GKE credentials so we can deploy to the cluster
178-
- uses: google-github-actions/get-gke-credentials@fb08709ba27618c31c09e014e1d8364b02e5042e
178+
- uses: google-github-actions/get-gke-credentials@db150f2cc60d1716e61922b832eae71d2a45938f
179179
with:
180180
cluster_name: {% raw %}${{ env.GKE_CLUSTER }}{% endraw %}
181181
location: {% raw %}${{ env.GKE_ZONE }}{% endraw %}

content/actions/examples/using-the-github-cli-on-a-runner.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
- if: {% raw %}${{ failure() }}{% endraw %}
108108
name: Create issue from file
109109
id: broken-link-report
110-
uses: peter-evans/create-issue-from-file@b4f9ee0a9d4abbfc6986601d9b1a4f8f8e74c77e
110+
uses: peter-evans/create-issue-from-file@ceef9be92406ace67ab5421f66570acf213ec395
111111
with:
112112
token: {% raw %}${{ env.GITHUB_TOKEN }}{% endraw %}
113113
@@ -380,7 +380,7 @@ If the `check-english-links.js` script detects broken links and returns a non-ze
380380
- if: {% raw %}${{ failure() }}{% endraw %}
381381
name: Create issue from file
382382
id: broken-link-report
383-
uses: peter-evans/create-issue-from-file@b4f9ee0a9d4abbfc6986601d9b1a4f8f8e74c77e
383+
uses: peter-evans/create-issue-from-file@ceef9be92406ace67ab5421f66570acf213ec395
384384
with:
385385
token: {% raw %}${{ env.GITHUB_TOKEN }}{% endraw %}
386386
@@ -392,7 +392,7 @@ If the `check-english-links.js` script detects broken links and returns a non-ze
392392
</td>
393393
<td>
394394

395-
Uses the `peter-evans/create-issue-from-file` action to create a new {% data variables.product.prodname_dotcom %} issue. This example is pinned to a specific version of the action, using the `b4f9ee0a9d4abbfc6986601d9b1a4f8f8e74c77e` SHA.
395+
Uses the `peter-evans/create-issue-from-file` action to create a new {% data variables.product.prodname_dotcom %} issue. This example is pinned to a specific version of the action, using the `ceef9be92406ace67ab5421f66570acf213ec395` SHA.
396396
</td>
397397
</tr>
398398
<tr>

content/actions/learn-github-actions/expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ You need to use specific syntax to tell {% data variables.product.prodname_dotco
3232

3333
```yaml
3434
steps:
35-
- uses: actions/hello-world-javascript-action@v1.1
35+
- uses: actions/hello-world-javascript-action@e76147da8e5c81eaf017dede5645551d4b94427b
3636
if: {% raw %}${{ <expression> }}{% endraw %}
3737
```
3838

content/actions/learn-github-actions/finding-and-customizing-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ If you need more reliable versioning, you should use the SHA value associated wi
163163

164164
```yaml
165165
steps:
166-
- uses: actions/javascript-action@172239021f7ba04fe7327647b213799853a9eb89
166+
- uses: actions/javascript-action@a824008085750b8e136effc585c3cd6082bd575f
167167
```
168168

169169
### Using branches

content/actions/managing-issues-and-pull-requests/commenting-on-an-issue-when-a-label-is-added.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ In the tutorial, you will first make a workflow file that uses the [`peter-evans
4848
issues: write
4949
steps:
5050
- name: Add comment
51-
uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae
51+
uses: peter-evans/create-or-update-comment@5f728c3dae25f329afbe34ee4d08eef25569d79f
5252
with:
5353
issue-number: {% raw %}${{ github.event.issue.number }}{% endraw %}
5454
body: |

0 commit comments

Comments
 (0)