Skip to content

Commit 770a240

Browse files
authored
Chore: Bumping dependencies (#884)
* bumping dependencies * fix tar dep * bumping yarn itself * adding concurrency limits to workflows
1 parent e1a6788 commit 770a240

File tree

8 files changed

+1274
-1371
lines changed

8 files changed

+1274
-1371
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: CI
22

33
on: pull_request
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
58
jobs:
69
check:
710
name: Automated checks

.github/workflows/create-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ on: # zizmor: ignore[cache-poisoning]
22
push:
33
tags:
44
- 'v*'
5-
5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
69
name: Create Release
710

811
jobs:

.github/workflows/npm-bump-version.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ on:
1111
- patch
1212
- minor
1313
- major
14-
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: true
1517
jobs:
1618
bump-version:
1719
runs-on: ubuntu-latest

.yarn/releases/yarn-4.6.0.cjs

Lines changed: 0 additions & 934 deletions
This file was deleted.

.yarn/releases/yarn-4.9.1.cjs

Lines changed: 948 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.6.0.cjs
3+
yarnPath: .yarn/releases/yarn-4.9.1.cjs

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444
"chalk": "^4.1.2",
4545
"debug": "^4.3.2",
4646
"diff": "^8.0.0",
47-
"execa": "^9.1.0",
47+
"execa": "^9.5.3",
4848
"fast-glob": "^3.3.2",
4949
"node-fetch": "^3.3.2",
5050
"ora": "8.2.0",
51-
"tar": "^7.0.1",
51+
"tar": "^7.4.3",
5252
"tty-table": "^4.1.5",
5353
"typescript": "5.8.3",
5454
"yargs": "^17.7.2"
@@ -60,7 +60,6 @@
6060
"@types/debug": "^4.1.7",
6161
"@types/diff": "^7.0.0",
6262
"@types/node-fetch": "^2.6.2",
63-
"@types/rimraf": "^4.0.5",
6463
"@types/tar": "^6.1.2",
6564
"@types/yargs": "^17.0.12",
6665
"@typescript-eslint/eslint-plugin": "^8.21.0",
@@ -73,11 +72,11 @@
7372
"eslint-plugin-prettier": "^5.1.2",
7473
"eslint-plugin-react": "7.37.5",
7574
"eslint-plugin-react-hooks": "5.2.0",
76-
"nodemon": "^3.1.4",
75+
"nodemon": "^3.1.10",
7776
"npm-run-all": "^4.1.5",
7877
"prettier": "^3.1.1",
79-
"tsc-watch": "^6.0.4",
80-
"vitest": "^3.0.2"
78+
"tsc-watch": "^6.3.1",
79+
"vitest": "^3.1.4"
8180
},
8281
"nodemonConfig": {
8382
"watch": [
@@ -102,5 +101,5 @@
102101
"url": "https://github.com/grafana/levitate/issues"
103102
},
104103
"homepage": "https://github.com/grafana/levitate#readme",
105-
"packageManager": "yarn@4.6.0"
104+
"packageManager": "yarn@4.9.1"
106105
}

0 commit comments

Comments
 (0)