lighthouse-badges 1.1.26 → 1.1.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,20 +14,15 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
16
  - name: Checkout
17
- uses: actions/checkout@v2
18
-
19
- - name: Set up Docker Context for Buildx
20
- id: buildx-context
21
- run: docker context create builders
17
+ uses: actions/checkout@v3
22
18
 
23
19
  - name: Set up QEMU
24
- uses: docker/setup-qemu-action@v1
20
+ uses: docker/setup-qemu-action@v2
25
21
 
26
22
  - name: Set up Docker Buildx
27
- uses: docker/setup-buildx-action@v1
23
+ uses: docker/setup-buildx-action@v2
28
24
  with:
29
25
  version: latest
30
- endpoint: builders
31
26
 
32
27
  - name: Versions
33
28
  run: |
@@ -42,13 +37,13 @@ jobs:
42
37
 
43
38
  - name: Login to DockerHub
44
39
  if: github.ref == 'refs/heads/master'
45
- uses: docker/login-action@v1
40
+ uses: docker/login-action@v2
46
41
  with:
47
42
  username: ${{ secrets.DOCKERHUB_USERNAME }}
48
43
  password: ${{ secrets.DOCKERHUB_TOKEN }}
49
44
 
50
45
  - name: Docker Build
51
- uses: docker/build-push-action@v2
46
+ uses: docker/build-push-action@v3
52
47
  with:
53
48
  context: .
54
49
  file: ./Dockerfile
@@ -101,7 +96,7 @@ jobs:
101
96
 
102
97
  - name: Deploy to Dockerhub
103
98
  if: github.ref == 'refs/heads/master'
104
- uses: docker/build-push-action@v2
99
+ uses: docker/build-push-action@v3
105
100
  with:
106
101
  context: .
107
102
  file: ./Dockerfile
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lighthouse-badges",
3
- "version": "1.1.26",
3
+ "version": "1.1.27",
4
4
  "description": "🚦Generate gh-badges (shields.io) based on Lighthouse performance.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -42,20 +42,20 @@
42
42
  "argparse": "2.0.1",
43
43
  "badge-maker": "^3.3.1",
44
44
  "clui": "^0.3.6",
45
- "lighthouse": "^9.6.6",
45
+ "lighthouse": "^9.6.8",
46
46
  "ramda": "^0.28.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@babel/core": "^7.18.10",
50
- "@babel/plugin-transform-runtime": "^7.18.10",
51
- "@babel/preset-env": "^7.18.10",
52
- "@babel/runtime": "^7.18.9",
53
- "babel-jest": "^28.1.3",
54
- "eslint": "^8.22.0",
49
+ "@babel/core": "^7.19.6",
50
+ "@babel/plugin-transform-runtime": "^7.19.6",
51
+ "@babel/preset-env": "^7.19.4",
52
+ "@babel/runtime": "^7.20.0",
53
+ "babel-jest": "^29.2.2",
54
+ "eslint": "^8.26.0",
55
55
  "eslint-config-airbnb-base": "^15.0.0",
56
56
  "eslint-plugin-import": "^2.26.0",
57
57
  "husky": "^8.0.1",
58
- "jest": "^28.1.3",
58
+ "jest": "^29.2.2",
59
59
  "lint-staged": "^13.0.3",
60
60
  "npm-run-all": "^4.1.5"
61
61
  },