Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Batched Dependabot updates #173

Merged
merged 21 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
0fb8561
npm(deps-dev): bump @typescript-eslint/parser from 6.2.1 to 6.3.0
dependabot[bot] Aug 12, 2023
e474f5f
Merge dependabot/npm_and_yarn/typescript-eslint/parser-6.3.0 into bat…
elenagarrone Aug 14, 2023
c2f529f
npm(deps-dev): bump semantic-release from 21.0.7 to 21.0.8
dependabot[bot] Aug 19, 2023
f80c168
chore(deps): bump actions/setup-node from 3.7.0 to 3.8.1
dependabot[bot] Aug 19, 2023
367a10b
Merge dependabot/github_actions/actions/setup-node-3.8.1 into batched…
elenagarrone Aug 21, 2023
bd90539
Merge dependabot/npm_and_yarn/semantic-release-21.0.8 into batched-de…
elenagarrone Aug 21, 2023
044d7e2
npm(deps-dev): bump typescript from 5.1.6 to 5.2.2
dependabot[bot] Aug 26, 2023
9ad6472
Merge dependabot/npm_and_yarn/typescript-5.2.2 into batched-dependabo…
elenagarrone Aug 28, 2023
ae13082
chore(deps): bump actions/checkout from 3 to 4
dependabot[bot] Sep 9, 2023
a10e0ff
Merge dependabot/github_actions/actions/checkout-4 into batched-depen…
elenagarrone Sep 11, 2023
76ee809
npm(deps-dev): bump @octokit/openapi-types from 18.0.0 to 19.0.0
dependabot[bot] Sep 23, 2023
34aa36e
Merge dependabot/npm_and_yarn/octokit/openapi-types-19.0.0 into batch…
elenagarrone Sep 25, 2023
9d74492
npm(deps): bump @octokit/rest from 20.0.1 to 20.0.2
dependabot[bot] Sep 30, 2023
1c7aa10
Merge dependabot/npm_and_yarn/octokit/rest-20.0.2 into batched-depend…
elenagarrone Oct 2, 2023
4a47923
npm(deps): bump @actions/core from 1.10.0 to 1.10.1
dependabot[bot] Oct 7, 2023
2ccdd47
Merge dependabot/npm_and_yarn/actions/core-1.10.1 into batched-depend…
elenagarrone Oct 9, 2023
4227a9c
npm(deps-dev): bump @babel/traverse from 7.18.10 to 7.23.2
dependabot[bot] Oct 18, 2023
250500e
Merge dependabot/npm_and_yarn/babel/traverse-7.23.2 into batched-depe…
elenagarrone Oct 18, 2023
8f99f3f
chore(deps): bump actions/upload-artifact from 3 to 4
dependabot[bot] Dec 17, 2023
aded96f
Merge dependabot/github_actions/actions/upload-artifact-4 into batche…
elenagarrone Dec 18, 2023
46a577f
chore(deps): dependabot batcher updates
AndreiRosu Apr 9, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/dependabot.scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repo'
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
token: ${{ secrets.DEPENDABOT_BATCH_TOKEN }}

- name: 'Set Node Version'
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- name: 'Setup Node'
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'npm'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
if: ${{ !startsWith(github.head_ref, 'dependabot/') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0

- uses: actions/setup-node@v3.7.0
- uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'npm'
Expand All @@ -35,7 +35,7 @@ jobs:
run: npm run build

- name: 'Upload Build Artifact'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.1
with:
name: build
path: dist
Expand Down
Loading