Skip to content

Commit 1265954

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents 0b8d674 + 2e47c25 commit 1265954

9 files changed

+21
-25
lines changed

.github/allowed-actions.js

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@
44
// can be added it this list.
55

66
module.exports = [
7-
'actions/cache@70655ec8323daeeaa7ef06d7c56e1b9191396cbe',
8-
'actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16',
9-
'actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675',
10-
'actions/github-script@5d03ada4b0a753e9460b312e61cc4f8fdeacf163',
11-
'actions/github-script@6e5ee1dc1cb3740e5e5e76ad668e3f526edbfe45',
12-
'actions/github-script@44b873bc975058192f5279ebe7579496381f575d',
13-
'actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9',
14-
'actions/labeler@5f867a63be70efff62b767459b009290364495eb',
15-
'actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d',
16-
'actions/setup-ruby@5f29a1cd8dfebf420691c4c9a0e832e2fae5a526',
17-
'actions/stale@44f9eae0adddf72dbf3eedfacc999f70afcec1a8',
7+
'actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16', //actions/cache@v2.1.2
8+
'actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675', //actions/checkout@v2.3.3
9+
'actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9', //actions/script@v3.0.0
10+
'actions/labeler@5f867a63be70efff62b767459b009290364495eb', //actions/labeler@v2.2.0
11+
'actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d', //actions/setup-node@v1.4.4
12+
'actions/setup-ruby@5f29a1cd8dfebf420691c4c9a0e832e2fae5a526', //actions/setup-ruby@v1.1.2
13+
'actions/stale@44f9eae0adddf72dbf3eedfacc999f70afcec1a8', //actions/stale@v3.0.12
1814
'crowdin/github-action@fd9429dd63d6c0f8a8cb4b93ad8076990bd6e688',
1915
'dawidd6/action-delete-branch@47743101a121ad657031e6704086271ca81b1911',
2016
'docker://chinthakagodawita/autoupdate-action:v1',

.github/workflows/dry-run-sync-algolia-search-indices.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
node-version: 14.x
1717
- name: cache node modules
18-
uses: actions/cache@70655ec8323daeeaa7ef06d7c56e1b9191396cbe
18+
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
1919
with:
2020
path: ~/.npm
2121
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/first-responder-docs-content.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Check if the event originated from a team member
14-
uses: actions/github-script@44b873bc975058192f5279ebe7579496381f575d
14+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
1515
id: set-result
1616
with:
1717
github-token: ${{secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES}}
@@ -53,12 +53,12 @@ jobs:
5353

5454
first-responder-remove-pr:
5555
name: Remove PR from FR project board
56-
if: github.repository == 'github/docs-internal' && (github.event.label.name == 'docs-content-fr' && github.event.action == 'unlabeled') || github.event.action == 'closed'
56+
if: github.repository == 'github/docs-internal' && ((github.event.label.name == 'docs-content-fr' && github.event.action == 'unlabeled') || github.event.action == 'closed')
5757
runs-on: ubuntu-latest
5858

5959
steps:
6060
- name: Remove card from project
61-
uses: actions/github-script@44b873bc975058192f5279ebe7579496381f575d
61+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
6262
with:
6363
github-token: ${{secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES}}
6464
result-encoding: string

.github/workflows/send-eng-issues-to-backlog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Add issues with engineering label to project board
1414
if: contains(github.event.issue.labels.*.name, 'engineering') || contains(github.event.issue.labels.*.name, 'design') || contains(github.event.issue.labels.*.name, 'Design')
15-
uses: actions/github-script@44b873bc975058192f5279ebe7579496381f575d
15+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
1616
with:
1717
github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
1818
script: |

.github/workflows/start-new-engineering-pr-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
DRAFT_COLUMN_ID: 10095775
1313
REGULAR_COLUMN_ID: 10095779
1414
steps:
15-
- uses: actions/github-script@44b873bc975058192f5279ebe7579496381f575d
15+
- uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
1616
continue-on-error: true
1717
with:
1818
github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}

.github/workflows/sync-algolia-search-indices.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: 14.x
2020
- name: cache node modules
21-
uses: actions/cache@70655ec8323daeeaa7ef06d7c56e1b9191396cbe
21+
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
2222
with:
2323
path: ~/.npm
2424
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/translations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
branch: translations
2525
- if: ${{ steps.pr.outputs.number }}
2626
name: Check if already labeled
27-
uses: actions/github-script@5d03ada4b0a753e9460b312e61cc4f8fdeacf163
27+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
2828
id: has-label
2929
with:
3030
script: |
@@ -44,7 +44,7 @@ jobs:
4444
number: ${{ steps.pr.outputs.number }}
4545
- if: ${{ !steps.has-label.outputs.result }}
4646
name: Add automerge label
47-
uses: actions/github-script@5d03ada4b0a753e9460b312e61cc4f8fdeacf163
47+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
4848
with:
4949
github-token: ${{ secrets.GITHUB_TOKEN }}
5050
script: |

.github/workflows/triage-issue-comments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Check if the event originated from a team member
13-
uses: actions/github-script@6e5ee1dc1cb3740e5e5e76ad668e3f526edbfe45
13+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
1414
id: is-internal-contributor
1515
with:
1616
github-token: ${{secrets.GITHUB_TOKEN}}

content/github/getting-started-with-github/finding-ways-to-contribute-to-open-source-on-github.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ Some open-source projects provide mirrors on {% data variables.product.prodname_
3232

3333
Here are a few prominent repositories that are mirrored on {% data variables.product.prodname_dotcom_the_website %}:
3434

35-
- [android](https://github.com/android)
35+
- [Android Open Source Project](https://github.com/aosp-mirror)
3636
- [The Apache Software Foundation](https://github.com/apache)
3737
- [The Chromium Project](https://github.com/chromium)
38-
- [The Eclipse Foundation](https://github.com/eclipse)
38+
- [Eclipse Foundation](https://github.com/eclipse)
3939
- [The FreeBSD Project](https://github.com/freebsd)
40-
- [The Glasgow Haskell Compiler](https://github.com/ghc)
40+
- [Glasgow Haskell Compiler](https://github.com/ghc)
4141
- [GNOME](https://github.com/GNOME)
42-
- [The Linux kernel source tree](https://github.com/torvalds/linux)
42+
- [Linux kernel source tree](https://github.com/torvalds/linux)
4343
- [Qt](https://github.com/qt)
4444

4545
To set up your own mirror, you can configure [a post-receive hook](https://git-scm.com/book/en/Customizing-Git-Git-Hooks) on your official project repository to automatically push commits to a mirror repository on {% data variables.product.product_name %}.

0 commit comments

Comments
 (0)