Skip to content

Commit 8e7549a

Browse files
authored
Merge branch 'main' into fetch-mock-v12
2 parents 40e4e20 + 1c4486a commit 8e7549a

File tree

9 files changed

+1147
-853
lines changed

9 files changed

+1147
-853
lines changed

.github/workflows/codeql-analysis.yml

Lines 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
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@v3
59+
uses: github/codeql-action/autobuild@v4
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@v3
72+
uses: github/codeql-action/analyze@v4

.github/workflows/immediate-response.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
2020

2121
- name: Respond to issue or PR
22-
uses: peter-evans/create-or-update-comment@v4
22+
uses: peter-evans/create-or-update-comment@v5
2323
with:
2424
issue-number: ${{ steps.extract.outputs.NUMBER }}
2525
body: >

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
name: release
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
19-
- uses: actions/setup-node@v4
18+
- uses: actions/checkout@v5
19+
- uses: actions/setup-node@v6
2020
with:
2121
node-version: lts/*
2222
cache: npm

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
strategy:
1414
matrix:
1515
node_version:
16-
- 18
1716
- 20
1817
- 22
18+
- 24
1919
steps:
20-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20+
- uses: actions/checkout@v5
2121
- name: Use Node.js ${{ matrix.node_version }}
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v6
2323
with:
2424
cache: npm
2525
node-version: ${{ matrix.node_version }}
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- run: exit 1
3535
if: ${{ needs.test_matrix.result != 'success' }}
36-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
36+
- uses: actions/checkout@v5
3737
- run: npm ci
3838
- run: npm run lint
3939
- name: Test TypeScript

.github/workflows/update-prettier.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
update_prettier:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
11-
- uses: actions/setup-node@v4
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-node@v6
1212
with:
1313
cache: npm
14-
node-version: 16
14+
node-version: lts/*
1515
- run: npm ci
1616
- run: npm run lint:fix
1717
- uses: gr2m/[email protected]

0 commit comments

Comments
 (0)