Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 586a6a1

Browse filesBrowse files
authored
Merge branch 'main' into upstream-setup-license
2 parents fd2cfc1 + 8cf50d1 commit 586a6a1
Copy full SHA for 586a6a1

13 files changed

+58
-68
lines changed

‎.github/actions/install-dependencies/action.yml

Copy file name to clipboardExpand all lines: .github/actions/install-dependencies/action.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'Set up node and install dependencies'
33
runs:
44
using: 'composite'
55
steps:
6-
- uses: actions/setup-node@v3
6+
- uses: actions/setup-node@v4
77
with:
88
node-version: '20.x'
99
cache: npm

‎.github/dependabot.yml

Copy file name to clipboard
+16Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'github-actions'
4+
directory: '/'
5+
schedule:
6+
interval: 'weekly'
7+
8+
- package-ecosystem: 'github-actions'
9+
directory: '/.github/actions/install-dependencies'
10+
schedule:
11+
interval: 'weekly'
12+
13+
- package-ecosystem: 'npm'
14+
directory: '/'
15+
schedule:
16+
interval: 'weekly'

‎.github/workflows/check-dist.yml

Copy file name to clipboardExpand all lines: .github/workflows/check-dist.yml
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ on:
1313
pull_request:
1414
workflow_dispatch:
1515

16+
permissions:
17+
contents: read
18+
1619
jobs:
1720
check-dist:
1821
runs-on: ubuntu-latest
1922

2023
steps:
21-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2225

2326
- uses: ./.github/actions/install-dependencies
2427

‎.github/workflows/ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ on:
66
pull_request:
77
branches: [main]
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
ci:
1114
runs-on: ubuntu-latest
1215
steps:
13-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1417
- uses: ./.github/actions/install-dependencies
1518
- run: npm run style:check
1619
- run: npm test

‎.github/workflows/codeql-analysis.yml

Copy file name to clipboardExpand all lines: .github/workflows/codeql-analysis.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@v3
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v2
59+
uses: github/codeql-action/autobuild@v3
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,4 +69,4 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
72+
uses: github/codeql-action/analyze@v3

‎.github/workflows/integration.yml

Copy file name to clipboardExpand all lines: .github/workflows/integration.yml
+10-7Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,15 @@ on:
66
pull_request:
77
branches: [main]
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
test-return:
1114
name: 'Integration test: return'
1215
runs-on: ubuntu-latest
1316
steps:
14-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1518
- id: output-set
1619
uses: ./
1720
with:
@@ -31,7 +34,7 @@ jobs:
3134
name: 'Integration test: relative-path require'
3235
runs-on: ubuntu-latest
3336
steps:
34-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3538
- id: relative-require
3639
uses: ./
3740
with:
@@ -49,7 +52,7 @@ jobs:
4952
name: 'Integration test: npm package require'
5053
runs-on: ubuntu-latest
5154
steps:
52-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
5356
- uses: ./.github/actions/install-dependencies
5457
- id: npm-require
5558
uses: ./
@@ -69,7 +72,7 @@ jobs:
6972
name: 'Integration test: GraphQL previews option'
7073
runs-on: ubuntu-latest
7174
steps:
72-
- uses: actions/checkout@v3
75+
- uses: actions/checkout@v4
7376
- uses: ./.github/actions/install-dependencies
7477
- id: previews-default
7578
name: Default previews not set
@@ -122,7 +125,7 @@ jobs:
122125
name: 'Integration test: user-agent option'
123126
runs-on: ubuntu-latest
124127
steps:
125-
- uses: actions/checkout@v3
128+
- uses: actions/checkout@v4
126129
- uses: ./.github/actions/install-dependencies
127130
- id: user-agent-default
128131
name: Default user-agent not set
@@ -179,7 +182,7 @@ jobs:
179182
name: "Integration test: debug option (runner.debug mode ${{ matrix.environment && 'enabled' || 'disabled' }})"
180183
runs-on: ubuntu-latest
181184
steps:
182-
- uses: actions/checkout@v3
185+
- uses: actions/checkout@v4
183186
- uses: ./.github/actions/install-dependencies
184187
- id: debug-default
185188
name: Default debug not set
@@ -253,7 +256,7 @@ jobs:
253256
name: 'Integration test: base-url option'
254257
runs-on: ubuntu-latest
255258
steps:
256-
- uses: actions/checkout@v3
259+
- uses: actions/checkout@v4
257260
- uses: ./.github/actions/install-dependencies
258261

259262
- id: base-url-default

‎.github/workflows/licensed.yml

Copy file name to clipboardExpand all lines: .github/workflows/licensed.yml
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@ on:
88
branches:
99
- main
1010

11+
permissions:
12+
contents: read
13+
1114
jobs:
1215
test:
1316
runs-on: ubuntu-latest
1417
name: Check licenses
1518
steps:
16-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
1720
with:
1821
fetch-depth: 0 # prefer to use a full fetch for licensed workflows
1922
- uses: ruby/setup-ruby@28c4deda893d5a96a6b2d958c5b47fc18d65c9d3 # v1.213.0

‎.github/workflows/publish-immutable-actions.yml

Copy file name to clipboardExpand all lines: .github/workflows/publish-immutable-actions.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
uses: actions/checkout@v4
1818
- name: Publish
1919
id: publish
20-
uses: actions/publish-immutable-action@0.0.3
20+
uses: actions/publish-immutable-action@0.0.4

‎.github/workflows/pull-request-test.yml

Copy file name to clipboardExpand all lines: .github/workflows/pull-request-test.yml
+8-4Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ on:
55
branches: [main]
66
types: [opened, synchronize]
77

8+
permissions:
9+
contents: read
10+
pull-requests: write
11+
812
jobs:
913
pull-request-test:
1014
runs-on: ubuntu-latest
1115
steps:
12-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1317
- uses: ./
1418
with:
1519
script: |
@@ -20,9 +24,9 @@ jobs:
2024
issue_number: context.payload.number,
2125
})
2226
23-
// Find any comment already made by the bot.
24-
const botComment = comments.find(comment => comment.user.id === 41898282)
25-
const commentBody = "Hello from actions/github-script! (${{ github.sha }})"
27+
// Find any comment already made by the bot.
28+
const botComment = comments.find(comment => comment.user.id === 41898282)
29+
const commentBody = "Hello from actions/github-script! (${{ github.sha }})"
2630
2731
if (context.payload.pull_request.head.repo.full_name !== 'actions/github-script') {
2832
console.log('Not attempting to write comment on PR from fork');

‎.github/workflows/stale.yml

Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
-31Lines changed: 0 additions & 31 deletions
This file was deleted.

‎.gitignore

Copy file name to clipboard
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
/node_modules/
2-
!/.vscode/
1+
/node_modules/

‎.vscode/settings.json

Copy file name to clipboardExpand all lines: .vscode/settings.json
-10Lines changed: 0 additions & 10 deletions
This file was deleted.

‎README.md

Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ jobs:
305305
echo-input:
306306
runs-on: ubuntu-latest
307307
steps:
308-
- uses: actions/checkout@v3
308+
- uses: actions/checkout@v4
309309
- uses: actions/github-script@v7
310310
with:
311311
script: |
@@ -343,7 +343,7 @@ jobs:
343343
echo-input:
344344
runs-on: ubuntu-latest
345345
steps:
346-
- uses: actions/checkout@v3
346+
- uses: actions/checkout@v4
347347
- uses: actions/github-script@v7
348348
env:
349349
SHA: '${{env.parentSHA}}'
@@ -381,8 +381,8 @@ jobs:
381381
echo-input:
382382
runs-on: ubuntu-latest
383383
steps:
384-
- uses: actions/checkout@v3
385-
- uses: actions/setup-node@v3
384+
- uses: actions/checkout@v4
385+
- uses: actions/setup-node@v4
386386
with:
387387
node-version: '20.x'
388388
- run: npm ci
@@ -417,7 +417,7 @@ jobs:
417417
print-stuff:
418418
runs-on: ubuntu-latest
419419
steps:
420-
- uses: actions/checkout@v3
420+
- uses: actions/checkout@v4
421421
- uses: actions/github-script@v7
422422
with:
423423
script: |

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.