mega-linter-runner 9.1.1-beta202511192110.0 → 9.1.1-beta202511221326.0

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.
@@ -50,7 +50,7 @@ jobs:
50
50
  steps:
51
51
  # Git Checkout
52
52
  - name: Checkout Code
53
- uses: actions/checkout@v5
53
+ uses: actions/checkout@v6
54
54
  with:
55
55
  token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
56
56
 
@@ -59,7 +59,7 @@ jobs:
59
59
 
60
60
  steps:
61
61
  - name: Checkout Code
62
- uses: actions/checkout@v4
62
+ uses: actions/checkout@v6
63
63
  with:
64
64
  fetch-depth: 0
65
65
 
@@ -55,7 +55,7 @@ jobs:
55
55
 
56
56
  steps:
57
57
  - name: Checkout Code
58
- uses: actions/checkout@v4
58
+ uses: actions/checkout@v6
59
59
  with:
60
60
  fetch-depth: 0
61
61
 
package/lib/upgrade.js CHANGED
@@ -223,20 +223,6 @@ jobs:
223
223
  build:
224
224
  `,
225
225
  },
226
- // V5 to V6 migration rules
227
- // GitHub actions
228
- {
229
- regex: /actions\/checkout@v2/gm,
230
- replacement: "actions/checkout@v3",
231
- test: "uses: actions/checkout@v2",
232
- testRes: "uses: actions/checkout@v3",
233
- },
234
- {
235
- regex: /actions\/checkout@v3/gm,
236
- replacement: "actions/checkout@v4",
237
- test: "uses: actions/checkout@v3",
238
- testRes: "uses: actions/checkout@v4",
239
- },
240
226
  // Documentation base URL
241
227
  {
242
228
  regex: /https:\/\/megalinter\.github\.io/gm,
@@ -497,10 +483,10 @@ jobs:
497
483
  },
498
484
  // v8 to v9 migrations rules
499
485
  {
500
- regex: /actions\/checkout@v4/gm,
501
- replacement: "actions/checkout@v5",
486
+ regex: /actions\/checkout@v(1|2|3|4|5)/gm,
487
+ replacement: "actions/checkout@v6",
502
488
  test: "uses: actions/checkout@v4",
503
- testRes: "uses: actions/checkout@v5",
489
+ testRes: "uses: actions/checkout@v6",
504
490
  },
505
491
  // Upload artifact action
506
492
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mega-linter-runner",
3
- "version": "9.1.1-beta202511192110.0",
3
+ "version": "9.1.1-beta202511221326.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/oxsecurity/megalinter.git"