Skip to content

Commit 6a63614

Browse files
chore(deps): bump the github-actions group with 8 updates (axios#6693)
Bumps the github-actions group with 8 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `40` | `45` | | [actions/setup-node](https://github.com/actions/setup-node) | `3` | `4` | | [github/codeql-action](https://github.com/github/codeql-action) | `2` | `3` | | [actions/dependency-review-action](https://github.com/actions/dependency-review-action) | `3` | `4` | | [ffurrer2/extract-release-notes](https://github.com/ffurrer2/extract-release-notes) | `1` | `2` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `6` | `7` | | [actions/stale](https://github.com/actions/stale) | `7` | `9` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `tj-actions/changed-files` from 40 to 45 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](tj-actions/changed-files@v40...v45) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v3...v4) Updates `github/codeql-action` from 2 to 3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v2...v3) Updates `actions/dependency-review-action` from 3 to 4 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](actions/dependency-review-action@v3...v4) Updates `ffurrer2/extract-release-notes` from 1 to 2 - [Release notes](https://github.com/ffurrer2/extract-release-notes/releases) - [Changelog](https://github.com/ffurrer2/extract-release-notes/blob/main/CHANGELOG.md) - [Commits](ffurrer2/extract-release-notes@v1...v2) Updates `peter-evans/create-pull-request` from 6 to 7 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v6...v7) Updates `actions/stale` from 7 to 9 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v7...v9) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/dependency-review-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: ffurrer2/extract-release-notes dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 39f00c3 commit 6a63614

9 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
persist-credentials: true
3333
- name: Get changed files
3434
id: changed-files
35-
uses: tj-actions/changed-files@v40
35+
uses: tj-actions/changed-files@v45
3636
- name: List all changed files
3737
run: |
3838
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
3939
echo "$file was changed"
4040
done
4141
- name: Check changes
4242
id: changed-ignored
43-
uses: tj-actions/changed-files@v40
43+
uses: tj-actions/changed-files@v45
4444
with:
4545
files: |
4646
**.md

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ jobs:
3232

3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
persist-credentials: false
3838

3939
# Initializes the CodeQL tools for scanning.
4040
- name: Initialize CodeQL
41-
uses: github/codeql-action/init@v2
41+
uses: github/codeql-action/init@v3
4242
with:
4343
languages: ${{ matrix.language }}
4444
queries: security-extended,security-and-quality
4545

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

.github/workflows/depsreview.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
with:
1414
persist-credentials: false
1515
- name: 'Dependency Review'
16-
uses: actions/dependency-review-action@v3
16+
uses: actions/dependency-review-action@v4

.github/workflows/notify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
# env:
3333
# GITHUB_CONTEXT: ${{ toJson(github) }}
3434
# run: echo "$GITHUB_CONTEXT"
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
with:
3737
fetch-depth: 0
3838
- name: git config
3939
run: |
4040
git config user.name "${GITHUB_ACTOR}"
4141
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
4242
- name: Setup node
43-
uses: actions/setup-node@v3
43+
uses: actions/setup-node@v4
4444
with:
4545
node-version: 18
4646
cache: npm

.github/workflows/npm-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
contents: write
1515
id-token: write
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: git config
1919
run: |
2020
git config user.name "${GITHUB_ACTOR}"
2121
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
22-
- uses: actions/setup-node@v3
22+
- uses: actions/setup-node@v4
2323
with:
2424
node-version: 18
2525
registry-url: https://registry.npmjs.org/

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
releaseIt:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
- name: git config
2626
run: |
2727
git config user.name "${GITHUB_ACTOR}"
2828
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
2929
- name: Setup node
30-
uses: actions/setup-node@v3
30+
uses: actions/setup-node@v4
3131
with:
3232
node-version: 16
3333
cache: npm
@@ -50,14 +50,14 @@ jobs:
5050
uses: martinbeentjes/npm-get-version-action@main
5151
- name: Extract release notes
5252
id: extract-release-notes
53-
uses: ffurrer2/extract-release-notes@v1
53+
uses: ffurrer2/extract-release-notes@v2
5454
- name: Generate PR body
5555
id: body
5656
uses: mathiasvr/command-output@v1
5757
with:
5858
run: node ./bin/pr.js
5959
- name: Create pull request
60-
uses: peter-evans/create-pull-request@v6
60+
uses: peter-evans/create-pull-request@v7
6161
id: cpr
6262
with:
6363
branch: release

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
- name: "Release PR info"
1919
if: github.event_name != 'workflow_dispatch'
2020
run: echo "PR ${{ github.event.number }}"
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: git config
2323
run: |
2424
git config user.name "${GITHUB_ACTOR}"
2525
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
26-
- uses: actions/setup-node@v3
26+
- uses: actions/setup-node@v4
2727
with:
2828
node-version: 18
2929
registry-url: https://registry.npmjs.org/
@@ -33,7 +33,7 @@ jobs:
3333
uses: martinbeentjes/npm-get-version-action@main
3434
- name: Extract release notes
3535
id: extract-release-notes
36-
uses: ffurrer2/extract-release-notes@v1
36+
uses: ffurrer2/extract-release-notes@v2
3737
- name: Check versions
3838
run: node ./bin/check-build-version.js
3939
############# TAG RELEASE ##############
@@ -64,15 +64,15 @@ jobs:
6464
needs: [publish]
6565
runs-on: ubuntu-latest
6666
steps:
67-
- uses: actions/checkout@v3
67+
- uses: actions/checkout@v4
6868
with:
6969
fetch-depth: 0
7070
- name: git config
7171
run: |
7272
git config user.name "${GITHUB_ACTOR}"
7373
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
7474
- name: Setup node
75-
uses: actions/setup-node@v3
75+
uses: actions/setup-node@v4
7676
with:
7777
node-version: 18
7878
cache: npm

.github/workflows/sponsors.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
sponsors:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
- name: git config
1818
run: |
1919
git config user.name "${GITHUB_ACTOR}"
2020
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
2121
- name: Setup node
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: 16
2525
cache: npm
@@ -44,7 +44,7 @@ jobs:
4444
echo "$CONTENT"
4545
- name: Create pull request
4646
if: ${{ steps.sponsors.outputs.changed == 'true'}}
47-
uses: peter-evans/create-pull-request@v6
47+
uses: peter-evans/create-pull-request@v7
4848
id: cpr
4949
with:
5050
branch: sponsors

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Close Stale Issues
15-
uses: actions/stale@v7
15+
uses: actions/stale@v9
1616
with:
1717
repo-token: ${{ secrets.GITHUB_TOKEN }}
1818
stale-issue-message: |

0 commit comments

Comments
 (0)