Skip to content

Commit 90f7801

Browse files
authored
Merge branch 'main' into add-touchbridge
2 parents 474f60b + 16bcafd commit 90f7801

56 files changed

Lines changed: 256 additions & 92 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/collections-renames.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717
if: github.repository_owner == 'github'
1818
steps:
19-
- uses: actions/checkout@v6.0.1
19+
- uses: actions/checkout@v6.0.2
2020

2121
- name: Setup Ruby
22-
uses: ruby/setup-ruby@80740b3b13bf9857e28854481ca95a84e78a2bdf # v1.284.0
22+
uses: ruby/setup-ruby@c4e5b1316158f92e3d49443a9d58b31d25ac0f8f # v1.306.0
2323
with:
2424
bundler-cache: true
2525

.github/workflows/jekyll_build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: 📂 checkout
24-
uses: actions/checkout@v6.0.1
24+
uses: actions/checkout@v6.0.2
2525

2626
- name: 💎 setup ruby
27-
uses: ruby/setup-ruby@80740b3b13bf9857e28854481ca95a84e78a2bdf # v1.284.0
27+
uses: ruby/setup-ruby@c4e5b1316158f92e3d49443a9d58b31d25ac0f8f # v1.306.0
2828
with:
2929
bundler-cache: true
3030
cache-version: 0
3131

3232
- name: 📄 setup pages
3333
id: pages
34-
uses: actions/configure-pages@v5.0.0
34+
uses: actions/configure-pages@v6.0.0
3535

3636
- name: 🔨 install dependencies & build site
3737
uses: actions/jekyll-build-pages@44a6e6beabd48582f863aeeb6cb2151cc1716697 # v1.0.13
3838

3939
- name: ⚡️ upload artifact
40-
uses: actions/upload-pages-artifact@v4.0.0
40+
uses: actions/upload-pages-artifact@v5.0.0
4141

4242
deploy:
4343
needs: build
@@ -53,4 +53,4 @@ jobs:
5353
steps:
5454
- name: 🚀 deploy
5555
id: deployment
56-
uses: actions/deploy-pages@v4.0.5
56+
uses: actions/deploy-pages@v5.0.0

.github/workflows/lint.yml

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,41 @@ on:
55
workflow_dispatch:
66
merge_group:
77

8-
permissions:
9-
contents: write
10-
checks: write
11-
128
jobs:
139
lint:
1410
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
steps:
14+
- uses: actions/checkout@v6.0.2
15+
with:
16+
ref: ${{ github.event.pull_request.head.sha || github.ref }}
17+
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
18+
19+
- name: Setup Ruby
20+
uses: ruby/setup-ruby@v1.306.0
21+
with:
22+
bundler-cache: false
23+
24+
- name: Install dependencies
25+
run: bundle install
26+
27+
- name: Run RuboCop
28+
run: |
29+
bundle exec rubocop
30+
31+
autocorrect:
32+
if: github.event.pull_request.head.repo.full_name == github.repository
33+
runs-on: ubuntu-latest
34+
permissions:
35+
contents: write
1536
steps:
16-
- uses: actions/checkout@v6.0.1
37+
- uses: actions/checkout@v6.0.2
1738
with:
1839
ref: ${{ github.event.pull_request.head.ref || github.ref }}
1940

2041
- name: Setup Ruby
21-
uses: ruby/setup-ruby@v1.284.0
42+
uses: ruby/setup-ruby@v1.306.0
2243
with:
2344
bundler-cache: true
2445

@@ -27,7 +48,6 @@ jobs:
2748
bundle exec rubocop -A
2849
2950
- name: Check for changes
30-
id: changes
3151
run: |
3252
git config --global user.name "github-actions[bot]"
3353
git config --global user.email "github-actions[bot]@users.noreply.github.com"

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
pull-requests: write # for actions/stale to close stale PRs
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/stale@v10.1.1
17+
- uses: actions/stale@v10.2.0
1818
with:
1919
stale-pr-message: >
2020
This pull request has been automatically marked as stale because it has not

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- test_type: all
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v6.0.1
36+
- uses: actions/checkout@v6.0.2
3737
with:
3838
fetch-depth: 0
3939

@@ -54,15 +54,15 @@ jobs:
5454

5555
- name: Setup Ruby
5656
if: ${{ steps.topics.outputs.changed || steps.collections.outputs.changed || steps.all.outputs.changed }}
57-
uses: ruby/setup-ruby@80740b3b13bf9857e28854481ca95a84e78a2bdf # v1.284.0
57+
uses: ruby/setup-ruby@c4e5b1316158f92e3d49443a9d58b31d25ac0f8f # v1.306.0
5858
with:
5959
bundler-cache: true
6060

6161
- name: Restore API cache
6262
if: |
6363
(matrix.test_type == 'collections' && steps.collections.outputs.changed) ||
6464
(matrix.test_type == 'all' && steps.all.outputs.changed)
65-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6666
with:
6767
path: .api-cache.json
6868
key: api-cache-${{ matrix.test_type }}-${{ github.run_id }}

.github/workflows/topic-commenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Comment on PR with topic info
21-
uses: actions/github-script@v8
21+
uses: actions/github-script@v9
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
with:

Gemfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ source "https://rubygems.org"
33
gem "faraday", "2.14.1"
44
gem "faraday-retry", "2.4.0"
55
gem "github-pages", "~> 232", group: :jekyll_plugins
6-
gem "json", "2.18.0"
6+
gem "json", "2.19.4"
77
gem "language_server-protocol", "3.17.0.5"
8-
gem "nokogiri", "~> 1.19.0"
9-
gem "rake", "13.3.1"
10-
gem "rubocop", "1.82.1"
8+
gem "nokogiri", "~> 1.19.2"
9+
gem "rake", "13.4.2"
10+
gem "rubocop", "1.86.1"
1111

1212
group :test do
1313
gem "fastimage"

Gemfile.lock

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ GEM
1414
securerandom (>= 0.3)
1515
tzinfo (~> 2.0, >= 2.0.5)
1616
uri (>= 0.13.1)
17-
addressable (2.8.7)
18-
public_suffix (>= 2.0.2, < 7.0)
17+
addressable (2.9.0)
18+
public_suffix (>= 2.0.2, < 8.0)
1919
ast (2.4.3)
2020
base64 (0.2.0)
2121
benchmark (0.4.1)
@@ -49,7 +49,7 @@ GEM
4949
net-http (~> 0.5)
5050
faraday-retry (2.4.0)
5151
faraday (~> 2.0)
52-
fastimage (2.4.0)
52+
fastimage (2.4.1)
5353
ffi (1.17.2)
5454
ffi (1.17.2-aarch64-linux-gnu)
5555
ffi (1.17.2-aarch64-linux-musl)
@@ -236,7 +236,7 @@ GEM
236236
gemoji (>= 3, < 5)
237237
html-pipeline (~> 2.2)
238238
jekyll (>= 3.0, < 5.0)
239-
json (2.18.0)
239+
json (2.19.4)
240240
kramdown (2.4.0)
241241
rexml
242242
kramdown-parser-gfm (1.1.0)
@@ -256,69 +256,70 @@ GEM
256256
jekyll (>= 3.5, < 5.0)
257257
jekyll-feed (~> 0.9)
258258
jekyll-seo-tag (~> 2.1)
259-
minitest (6.0.1)
259+
minitest (6.0.5)
260+
drb (~> 2.0)
260261
prism (~> 1.5)
261262
multi_xml (0.8.1)
262263
bigdecimal (>= 3.1, < 5)
263264
net-http (0.9.1)
264265
uri (>= 0.11.1)
265-
nokogiri (1.19.0)
266+
nokogiri (1.19.2)
266267
mini_portile2 (~> 2.8.2)
267268
racc (~> 1.4)
268-
nokogiri (1.19.0-aarch64-linux-gnu)
269+
nokogiri (1.19.2-aarch64-linux-gnu)
269270
racc (~> 1.4)
270-
nokogiri (1.19.0-aarch64-linux-musl)
271+
nokogiri (1.19.2-aarch64-linux-musl)
271272
racc (~> 1.4)
272-
nokogiri (1.19.0-arm-linux-gnu)
273+
nokogiri (1.19.2-arm-linux-gnu)
273274
racc (~> 1.4)
274-
nokogiri (1.19.0-arm-linux-musl)
275+
nokogiri (1.19.2-arm-linux-musl)
275276
racc (~> 1.4)
276-
nokogiri (1.19.0-arm64-darwin)
277+
nokogiri (1.19.2-arm64-darwin)
277278
racc (~> 1.4)
278-
nokogiri (1.19.0-x86_64-darwin)
279+
nokogiri (1.19.2-x86_64-darwin)
279280
racc (~> 1.4)
280-
nokogiri (1.19.0-x86_64-linux-gnu)
281+
nokogiri (1.19.2-x86_64-linux-gnu)
281282
racc (~> 1.4)
282-
nokogiri (1.19.0-x86_64-linux-musl)
283+
nokogiri (1.19.2-x86_64-linux-musl)
283284
racc (~> 1.4)
284285
octokit (4.25.1)
285286
faraday (>= 1, < 3)
286287
sawyer (~> 0.9)
287-
parallel (1.27.0)
288-
parser (3.3.10.0)
288+
parallel (2.0.1)
289+
parser (3.3.11.1)
289290
ast (~> 2.4.1)
290291
racc
291292
pathutil (0.16.2)
292293
forwardable-extended (~> 2.6)
293-
prism (1.7.0)
294+
prism (1.9.0)
294295
pry (0.16.0)
295296
coderay (~> 1.1)
296297
method_source (~> 1.0)
297298
reline (>= 0.6.0)
298299
public_suffix (5.1.1)
299300
racc (1.8.1)
300301
rainbow (3.1.1)
301-
rake (13.3.1)
302+
rake (13.4.2)
302303
rb-fsevent (0.11.2)
303304
rb-inotify (0.11.1)
304305
ffi (~> 1.0)
305-
regexp_parser (2.11.3)
306+
regexp_parser (2.12.0)
306307
reline (0.6.3)
307308
io-console (~> 0.5)
308309
rexml (3.4.2)
309310
rouge (3.30.0)
310-
rubocop (1.82.1)
311+
rubocop (1.86.1)
311312
json (~> 2.3)
312313
language_server-protocol (~> 3.17.0.2)
313314
lint_roller (~> 1.1.0)
314-
parallel (~> 1.10)
315+
parallel (>= 1.10)
315316
parser (>= 3.3.0.2)
316317
rainbow (>= 2.2.2, < 4.0)
317318
regexp_parser (>= 2.9.3, < 3.0)
318-
rubocop-ast (>= 1.48.0, < 2.0)
319+
rubocop-ast (>= 1.49.0, < 2.0)
319320
ruby-progressbar (~> 1.7)
320321
unicode-display_width (>= 2.4.0, < 4.0)
321-
rubocop-ast (1.49.0)
322+
rubocop-ast (1.49.1)
322323
parser (>= 3.3.7.2)
323324
prism (~> 1.7)
324325
rubocop-performance (1.26.1)
@@ -371,14 +372,14 @@ DEPENDENCIES
371372
fastimage
372373
github-pages (~> 232)
373374
httparty
374-
json (= 2.18.0)
375+
json (= 2.19.4)
375376
language_server-protocol (= 3.17.0.5)
376377
minitest
377-
nokogiri (~> 1.19.0)
378+
nokogiri (~> 1.19.2)
378379
octokit
379380
pry
380-
rake (= 13.3.1)
381-
rubocop (= 1.82.1)
381+
rake (= 13.4.2)
382+
rubocop (= 1.86.1)
382383
rubocop-performance
383384
safe_yaml
384385
webrick

collections/ai-agents/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
items:
3+
- langchain-ai/langchain
4+
- crewAIInc/crewAI
5+
- microsoft/autogen
6+
- microsoft/semantic-kernel
7+
- modelcontextprotocol/servers
8+
- gfernandf/agent-skills
9+
display_name: AI Agents
10+
created_by: gfernandf
11+
---
12+
Frameworks, toolkits, and skill libraries for building autonomous AI agents. These projects help developers create agents that can plan, reason, use tools, and execute multi-step workflows powered by large language models.

collections/ctf-cybersec-resources/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ items:
5151
- jivoi/awesome-osint
5252
- Manisso/fsociety
5353
- j3ssie/osmedeus
54-
- rsmusllp/king-phisher
54+
- CrimsonForge-io/king-phisher
5555
- abhisharma404/vault
5656
- t0thkr1s/revshellgen
5757
- tina1998612/Awesome-Security-Tool-List

0 commit comments

Comments
 (0)