Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
matrix: ${{ steps.matrix.outputs.matrix }}

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
# Need this to be able to inquire about origin/master
filter: blob:none # https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/
fetch-depth: 0 # Default is 1; need to set to 0 to get the benefits of blob:none.
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: '20'

Expand All @@ -62,12 +62,12 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
# Need this to be able to inquire about origin/master
filter: blob:none # https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/
fetch-depth: 0 # Default is 1; need to set to 0 to get the benefits of blob:none.
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: '20'

Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- test

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ./.github/actions/setup-for-scripts

- name: Get suggestions dir
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ./.github/actions/setup-for-scripts

- run: pnpm tsc -p ./scripts
2 changes: 1 addition & 1 deletion .github/workflows/UpdateCodeowners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-and-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
# Use a deploy key so that CI triggers on pushes; we want to know if formatting broke something.
ssh-key: ${{ secrets.DEPLOY_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ghostbuster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ./.github/actions/setup-for-scripts
- run: node ./scripts/ghostbuster.js > ${{ runner.temp }}/comment.md
env:
Expand All @@ -42,7 +42,7 @@ jobs:
fi

- if: ${{ inputs.skipPR != 'true' }}
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'Remove contributors with deleted accounts #no-publishing-comment'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-md.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ./.github/actions/setup-for-scripts
- run: pnpm remark --frail . .github
4 changes: 2 additions & 2 deletions .github/workflows/pnpm-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.repository == 'DefinitelyTyped/DefinitelyTyped' }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: '20'
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/support-window.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ./.github/actions/setup-for-scripts

- name: Fetch TypeScript versions and release dates from npm
Expand Down
2 changes: 1 addition & 1 deletion types/google.picker/google.picker-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// https://issuetracker.google.com/issues/new?component=191628

// Skipping tests by updating with checksum
// 860712ae1e08361c68900a5571d8c33e
// c64c6a4346aeb5248db4c9af2c5ccb2f

// tslint:disable:no-unused-expression
google.picker.PickerBuilder;
8 changes: 8 additions & 0 deletions types/google.picker/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ declare namespace google {
* noted otherwise, the return type of methods below is of type
* `PickerBuilder`, allowing you to chain one call after another.
*
* Note: The
* {@link https://npmjs.com/package/@googleworkspace/drive-picker-element
* | @googleworkspace/drive-picker-element} custom web component is a
* streamlined way to integrate the Google Picker into your web app. For
* React applications, use the
* {@link https://npmjs.com/package/@googleworkspace/drive-picker-react
* | @googleworkspace/drive-picker-react} React component.
*
* @example Build a basic `Picker` using the builder pattern.
*
* ```ts
Expand Down
4 changes: 0 additions & 4 deletions types/guacamole-common-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
{
"name": "Petar Metodiev",
"githubUsername": "PetarMetodiev"
},
{
"name": "Linh Nguyen",
"githubUsername": "linn-gith"
}
]
}
7 changes: 1 addition & 6 deletions types/resolve-id-refs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,5 @@
"devDependencies": {
"@types/resolve-id-refs": "workspace:."
},
"owners": [
{
"name": "Morgan Spencer",
"githubUsername": "lunchbreakdev"
}
]
"owners": []
}
4 changes: 0 additions & 4 deletions types/simple-oauth2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
"name": "Michael Müller",
"githubUsername": "mad-mike"
},
{
"name": "Troy Lamerton",
"githubUsername": "troy-lamerton"
},
{
"name": "Martín Rodriguez",
"githubUsername": "netux"
Expand Down
4 changes: 0 additions & 4 deletions types/simple-oauth2/v1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
"name": "Michael Müller",
"githubUsername": "mad-mike"
},
{
"name": "Troy Lamerton",
"githubUsername": "troy-lamerton"
},
{
"name": "Martín Rodriguez",
"githubUsername": "netux"
Expand Down
4 changes: 0 additions & 4 deletions types/simple-oauth2/v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
"name": "Michael Müller",
"githubUsername": "mad-mike"
},
{
"name": "Troy Lamerton",
"githubUsername": "troy-lamerton"
},
{
"name": "Martín Rodriguez",
"githubUsername": "netux"
Expand Down
4 changes: 0 additions & 4 deletions types/simple-oauth2/v4/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
"name": "Michael Müller",
"githubUsername": "mad-mike"
},
{
"name": "Troy Lamerton",
"githubUsername": "troy-lamerton"
},
{
"name": "Martín Rodriguez",
"githubUsername": "netux"
Expand Down
4 changes: 0 additions & 4 deletions types/uswds__uswds/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
"@types/uswds__uswds": "workspace:."
},
"owners": [
{
"name": "Morgan Spencer",
"githubUsername": "lunchbreakdev"
},
{
"name": "Andrew Duthie",
"githubUsername": "aduth"
Expand Down