Skip to content

Commit a3f402b

Browse files
authored
Merge pull request #56912 from github/repo-sync
Repo sync
2 parents 9d19b46 + 86eab6f commit a3f402b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

content/actions/how-tos/reuse-automations/reuse-workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ You can define inputs and secrets, which can be passed from the caller workflow
5959
reusable_workflow_job:
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/labeler@v4
62+
- uses: actions/labeler@v5
6363
with:
6464
repo-token: ${{ secrets.personal_access_token }}
6565
configuration-path: ${{ inputs.config-path }}
@@ -99,7 +99,7 @@ jobs:
9999
triage:
100100
runs-on: ubuntu-latest
101101
steps:
102-
- uses: actions/labeler@v4
102+
- uses: actions/labeler@v5
103103
with:
104104
repo-token: ${{ secrets.token }}
105105
configuration-path: ${{ inputs.config-path }}

content/billing/concepts/product-billing/github-advanced-security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ contentType: concepts
2525
{% ifversion fpt or ghec %}
2626
{% data variables.product.github %} makes a subset of {% data variables.product.prodname_AS %} features available, free of charge, to all public repositories on {% data variables.product.prodname_dotcom_the_website %}. In addition, you can get insight into your exposure to leaked secrets with a free {% data variables.product.prodname_secret_risk_assessment %}. See [AUTOTITLE](/code-security/securing-your-organization/understanding-your-organizations-exposure-to-leaked-secrets/viewing-the-secret-risk-assessment-report-for-your-organization).
2727

28-
You need pay to use {% data variables.product.prodname_AS %} features in private repositories. If you change the visibility of a public repository to private and don't pay for {% data variables.product.prodname_AS %}, {% data variables.product.prodname_AS %} features will be disabled for that repository.
28+
You need to pay to use {% data variables.product.prodname_AS %} features in private repositories. If you change the visibility of a public repository to private and don't pay for {% data variables.product.prodname_AS %}, {% data variables.product.prodname_AS %} features will be disabled for that repository.
2929

3030
{% endif %}
3131

content/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
# Replace `APP_PEM` with the name of the secret that contains your app private key.
6868
- name: Generate token
6969
id: generate-token
70-
uses: actions/create-github-app-token@v1
70+
uses: actions/create-github-app-token@v2
7171
with:
7272
app-id: {% raw %}${{ vars.APP_ID }}{% endraw %}
7373
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}

content/rest/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
7676
steps:
7777
- name: Generate token
7878
id: generate-token
79-
uses: actions/create-github-app-token@v1
79+
uses: actions/create-github-app-token@v2
8080
with:
8181
app-id: {% raw %}${{ vars.APP_ID }}{% endraw %}
8282
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}
@@ -227,7 +227,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
227227

228228
- name: Generate token
229229
id: generate-token
230-
uses: actions/create-github-app-token@v1
230+
uses: actions/create-github-app-token@v2
231231
with:
232232
app-id: {% raw %}${{ vars.APP_ID }}{% endraw %}
233233
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}
@@ -321,7 +321,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
321321
steps:
322322
- name: Generate token
323323
id: generate-token
324-
uses: actions/create-github-app-token@v1
324+
uses: actions/create-github-app-token@v2
325325
with:
326326
app-id: {% raw %}${{ vars.APP_ID }}{% endraw %}
327327
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}

data/reusables/dependency-submission/premade-action-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
go-version: ">=1.18.0"
4141

4242
- name: Run snapshot action
43-
uses: actions/go-dependency-submission@v1
43+
uses: actions/go-dependency-submission@v2
4444
with:
4545
# Required: Define the repo path to the go.mod file used by the
4646
# build target

0 commit comments

Comments
 (0)