Skip to content

Commit 0d36487

Browse files
Merge branch 'github:main' into main
2 parents d434000 + 76b8fb3 commit 0d36487

File tree

49 files changed

+223
-61
lines changed

Some content is hidden

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

49 files changed

+223
-61
lines changed

.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@v4.2.2
19+
- uses: actions/checkout@v5.0.0
2020

2121
- name: Setup Ruby
22-
uses: ruby/setup-ruby@2a7b30092b0caf9c046252510f9273b4875f3db9 # v1.254.0
22+
uses: ruby/setup-ruby@d5126b9b3579e429dd52e51e68624dda2e05be25 # v1.267.0
2323
with:
2424
bundler-cache: true
2525

.github/workflows/conflict.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- run: |
1515
echo "In order to review this pull request for acceptance, we need to make sure that all of the prerequisites are satisfied."
1616
echo "This was not checked:"
17-
echo "> This change is not self-promotion.
17+
echo "> This change is not self-promotion."
1818
echo "This is a requirement to maintain a high level of independence in this project. Please update to confirm there is no conflict of interest."
1919
echo "Thank you!"
2020
exit 1

.github/workflows/jekyll_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: 📂 checkout
24-
uses: actions/checkout@v4.2.2
24+
uses: actions/checkout@v5.0.0
2525

2626
- name: 💎 setup ruby
27-
uses: ruby/setup-ruby@2a7b30092b0caf9c046252510f9273b4875f3db9 # v1.254.0
27+
uses: ruby/setup-ruby@d5126b9b3579e429dd52e51e68624dda2e05be25 # v1.267.0
2828
with:
2929
bundler-cache: true
3030
cache-version: 0
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/jekyll-build-pages@44a6e6beabd48582f863aeeb6cb2151cc1716697 # v1.0.13
3838

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

4242
deploy:
4343
needs: build

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4.2.2
16+
- uses: actions/checkout@v5.0.0
1717

1818
- name: Setup Ruby
19-
uses: ruby/setup-ruby@v1.255.0
19+
uses: ruby/setup-ruby@v1.267.0
2020
with:
2121
bundler-cache: true
2222

.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@v9.1.0
17+
- uses: actions/stale@v10.1.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- all
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4.2.2
25+
- uses: actions/checkout@v5.0.0
2626
with:
2727
fetch-depth: 0
2828

@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Setup Ruby
4545
if: ${{ steps.topics.outputs.changed || steps.collections.outputs.changed || steps.all.outputs.changed }}
46-
uses: ruby/setup-ruby@2a7b30092b0caf9c046252510f9273b4875f3db9 # v1.254.0
46+
uses: ruby/setup-ruby@d5126b9b3579e429dd52e51e68624dda2e05be25 # v1.267.0
4747
with:
4848
bundler-cache: true
4949

.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@v7
21+
uses: actions/github-script@v8
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
with:

Gemfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
source "https://rubygems.org"
22

3-
gem "faraday", "2.13.4"
3+
gem "faraday", "2.14.0"
44
gem "faraday-retry", "2.3.2"
55
gem "github-pages", "~> 232", group: :jekyll_plugins
6-
gem "json", "2.13.2"
6+
gem "json", "2.16.0"
77
gem "language_server-protocol", "3.17.0.5"
8-
gem "nokogiri", "~> 1.18.8"
9-
gem "rake", "13.3.0"
10-
gem "rubocop", "1.79.2"
8+
gem "nokogiri", "~> 1.18.10"
9+
gem "rake", "13.3.1"
10+
gem "rubocop", "1.81.7"
1111

1212
group :test do
1313
gem "fastimage"

Gemfile.lock

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ GEM
1919
ast (2.4.3)
2020
base64 (0.2.0)
2121
benchmark (0.4.1)
22-
bigdecimal (3.2.2)
22+
bigdecimal (3.3.1)
2323
coderay (1.1.3)
2424
coffee-script (2.4.1)
2525
coffee-script-source
@@ -41,7 +41,7 @@ GEM
4141
ffi (>= 1.15.0)
4242
eventmachine (1.2.7)
4343
execjs (2.10.0)
44-
faraday (2.13.4)
44+
faraday (2.14.0)
4545
faraday-net_http (>= 2.0, < 3.5)
4646
json
4747
logger
@@ -119,7 +119,7 @@ GEM
119119
activesupport (>= 2)
120120
nokogiri (>= 1.4)
121121
http_parser.rb (0.8.0)
122-
httparty (0.23.1)
122+
httparty (0.23.2)
123123
csv
124124
mini_mime (>= 1.0.0)
125125
multi_xml (>= 0.5.2)
@@ -235,7 +235,7 @@ GEM
235235
gemoji (>= 3, < 5)
236236
html-pipeline (~> 2.2)
237237
jekyll (>= 3.0, < 5.0)
238-
json (2.13.2)
238+
json (2.16.0)
239239
kramdown (2.4.0)
240240
rexml
241241
kramdown-parser-gfm (1.1.0)
@@ -255,71 +255,71 @@ GEM
255255
jekyll (>= 3.5, < 5.0)
256256
jekyll-feed (~> 0.9)
257257
jekyll-seo-tag (~> 2.1)
258-
minitest (5.25.5)
258+
minitest (5.26.1)
259259
multi_xml (0.7.2)
260260
bigdecimal (~> 3.1)
261261
net-http (0.6.0)
262262
uri
263-
nokogiri (1.18.9)
263+
nokogiri (1.18.10)
264264
mini_portile2 (~> 2.8.2)
265265
racc (~> 1.4)
266-
nokogiri (1.18.9-aarch64-linux-gnu)
266+
nokogiri (1.18.10-aarch64-linux-gnu)
267267
racc (~> 1.4)
268-
nokogiri (1.18.9-aarch64-linux-musl)
268+
nokogiri (1.18.10-aarch64-linux-musl)
269269
racc (~> 1.4)
270-
nokogiri (1.18.9-arm-linux-gnu)
270+
nokogiri (1.18.10-arm-linux-gnu)
271271
racc (~> 1.4)
272-
nokogiri (1.18.9-arm-linux-musl)
272+
nokogiri (1.18.10-arm-linux-musl)
273273
racc (~> 1.4)
274-
nokogiri (1.18.9-arm64-darwin)
274+
nokogiri (1.18.10-arm64-darwin)
275275
racc (~> 1.4)
276-
nokogiri (1.18.9-x86_64-darwin)
276+
nokogiri (1.18.10-x86_64-darwin)
277277
racc (~> 1.4)
278-
nokogiri (1.18.9-x86_64-linux-gnu)
278+
nokogiri (1.18.10-x86_64-linux-gnu)
279279
racc (~> 1.4)
280-
nokogiri (1.18.9-x86_64-linux-musl)
280+
nokogiri (1.18.10-x86_64-linux-musl)
281281
racc (~> 1.4)
282282
octokit (4.25.1)
283283
faraday (>= 1, < 3)
284284
sawyer (~> 0.9)
285285
parallel (1.27.0)
286-
parser (3.3.9.0)
286+
parser (3.3.10.0)
287287
ast (~> 2.4.1)
288288
racc
289289
pathutil (0.16.2)
290290
forwardable-extended (~> 2.6)
291-
prism (1.4.0)
291+
prism (1.6.0)
292292
pry (0.15.2)
293293
coderay (~> 1.1)
294294
method_source (~> 1.0)
295295
public_suffix (5.1.1)
296296
racc (1.8.1)
297297
rainbow (3.1.1)
298-
rake (13.3.0)
298+
rake (13.3.1)
299299
rb-fsevent (0.11.2)
300300
rb-inotify (0.11.1)
301301
ffi (~> 1.0)
302-
regexp_parser (2.11.1)
303-
rexml (3.4.1)
302+
regexp_parser (2.11.3)
303+
rexml (3.4.2)
304304
rouge (3.30.0)
305-
rubocop (1.79.2)
305+
rubocop (1.81.7)
306306
json (~> 2.3)
307307
language_server-protocol (~> 3.17.0.2)
308308
lint_roller (~> 1.1.0)
309309
parallel (~> 1.10)
310310
parser (>= 3.3.0.2)
311311
rainbow (>= 2.2.2, < 4.0)
312312
regexp_parser (>= 2.9.3, < 3.0)
313-
rubocop-ast (>= 1.46.0, < 2.0)
313+
rubocop-ast (>= 1.47.1, < 2.0)
314314
ruby-progressbar (~> 1.7)
315315
unicode-display_width (>= 2.4.0, < 4.0)
316-
rubocop-ast (1.46.0)
316+
rubocop-ast (1.47.1)
317317
parser (>= 3.3.7.2)
318318
prism (~> 1.4)
319-
rubocop-performance (1.25.0)
319+
rubocop-performance (1.26.1)
320320
lint_roller (~> 1.1)
321321
rubocop (>= 1.75.0, < 2.0)
322-
rubocop-ast (>= 1.38.0, < 2.0)
322+
rubocop-ast (>= 1.47.1, < 2.0)
323323
ruby-progressbar (1.13.0)
324324
rubyzip (2.4.1)
325325
safe_yaml (1.0.5)
@@ -338,9 +338,9 @@ GEM
338338
ethon (>= 0.9.0)
339339
tzinfo (2.0.6)
340340
concurrent-ruby (~> 1.0)
341-
unicode-display_width (3.1.4)
342-
unicode-emoji (~> 4.0, >= 4.0.4)
343-
unicode-emoji (4.0.4)
341+
unicode-display_width (3.2.0)
342+
unicode-emoji (~> 4.1)
343+
unicode-emoji (4.1.0)
344344
uri (1.0.3)
345345
webrick (1.9.1)
346346

@@ -361,19 +361,19 @@ PLATFORMS
361361
x86_64-linux-musl
362362

363363
DEPENDENCIES
364-
faraday (= 2.13.4)
364+
faraday (= 2.14.0)
365365
faraday-retry (= 2.3.2)
366366
fastimage
367367
github-pages (~> 232)
368368
httparty
369-
json (= 2.13.2)
369+
json (= 2.16.0)
370370
language_server-protocol (= 3.17.0.5)
371371
minitest
372-
nokogiri (~> 1.18.8)
372+
nokogiri (~> 1.18.10)
373373
octokit
374374
pry
375-
rake (= 13.3.0)
376-
rubocop (= 1.79.2)
375+
rake (= 13.3.1)
376+
rubocop (= 1.81.7)
377377
rubocop-performance
378378
safe_yaml
379379
webrick

collections/cheatsheets/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ items:
44
- detailyang/awesome-cheatsheet
55
- FavioVazquez/ds-cheatsheets
66
- gto76/python-cheatsheet
7-
- wilfredinni/python-cheatsheet
7+
- labex-labs/python-cheatsheet
88
- ihebski/DefaultCreds-cheat-sheet
99
- tldr-pages/tldr
1010
- cheat/cheat

0 commit comments

Comments
 (0)