Skip to content

Commit d88d2a9

Browse files
authored
Merge branch 'github:main' into [email protected]
2 parents 1e26fec + 0530461 commit d88d2a9

Some content is hidden

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

51 files changed

+2790
-199
lines changed

.github/workflows/jekyll-preview.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
33+
uses: actions/checkout@v4.2.2
3434
with:
3535
# For PRs make sure to checkout the PR branch
3636
ref: ${{ github.event.pull_request.head.sha }}
3737
repository: ${{ github.event.pull_request.head.repo.full_name }}
3838
- name: Setup Pages
39-
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
39+
uses: actions/configure-pages@v5.0.0
4040
- name: Build with Jekyll
4141
uses: actions/jekyll-build-pages@44a6e6beabd48582f863aeeb6cb2151cc1716697 # v1
4242
with:
4343
source: ./
4444
destination: ./_site
4545
- name: Upload artifact
4646
# Automatically uploads an artifact from the './_site' directory by default
47-
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
47+
uses: actions/upload-pages-artifact@v3.0.1
4848
# Deployment job
4949
deploy:
5050
environment:
@@ -60,6 +60,6 @@ jobs:
6060
steps:
6161
- name: Deploy to GitHub Pages
6262
id: deployment
63-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4
63+
uses: actions/deploy-pages@v4.0.5
6464
with:
6565
preview: "true"

.github/workflows/jekyll.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
30+
uses: actions/checkout@v4.2.2
3131
- name: Setup Pages
32-
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
32+
uses: actions/configure-pages@v5.0.0
3333
- name: Build with Jekyll
3434
uses: actions/jekyll-build-pages@44a6e6beabd48582f863aeeb6cb2151cc1716697 # v1
3535
with:
3636
source: ./
3737
destination: ./_site
3838
- name: Upload artifact
3939
# Automatically uploads an artifact from the './_site' directory by default
40-
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
40+
uses: actions/upload-pages-artifact@v3.0.1
4141
# Deployment job
4242
deploy:
4343
environment:
@@ -48,4 +48,4 @@ jobs:
4848
steps:
4949
- name: Deploy to GitHub Pages
5050
id: deployment
51-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4
51+
uses: actions/deploy-pages@v4.0.5

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9
14+
- uses: actions/stale@v9.1.0
1515
with:
1616
stale-pr-message: >
1717
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Set up Git repository
14-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
14+
uses: actions/checkout@v4.2.2
1515
- name: Set up Ruby
16-
uses: ruby/setup-ruby@540484a3c0f308b08619664ec40bf6c371d172c3 # v1
16+
uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 # v1
1717
with:
1818
bundler-cache: true
1919
- name: Set up Node
20-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
20+
uses: actions/setup-node@v4.2.0
2121
- name: Bootstrap
2222
run: script/bootstrap
2323
env:

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source "https://rubygems.org"
22

33
gem "github-pages", "~> 232", group: :jekyll_plugins
4+
gem "nokogiri", ">= 1.18.3"
45

56
group :test do
67
gem "html-proofer"

Gemfile.lock

Lines changed: 41 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
Ascii85 (1.1.1)
4+
Ascii85 (2.0.1)
55
activesupport (7.2.1.1)
66
base64
77
bigdecimal
@@ -16,12 +16,14 @@ GEM
1616
addressable (2.8.7)
1717
public_suffix (>= 2.0.2, < 7.0)
1818
afm (0.2.2)
19-
async (2.17.0)
20-
console (~> 1.26)
19+
async (2.23.0)
20+
console (~> 1.29)
2121
fiber-annotation
22-
io-event (~> 1.6, >= 1.6.5)
22+
io-event (~> 1.9)
23+
metrics (~> 0.12)
24+
traces (~> 0.15)
2325
base64 (0.2.0)
24-
bigdecimal (3.1.8)
26+
bigdecimal (3.1.9)
2527
coffee-script (2.4.1)
2628
coffee-script-source
2729
execjs
@@ -30,7 +32,7 @@ GEM
3032
commonmarker (0.23.10)
3133
concurrent-ruby (1.3.4)
3234
connection_pool (2.4.1)
33-
console (1.27.0)
35+
console (1.29.3)
3436
fiber-annotation
3537
fiber-local (~> 1.1)
3638
json
@@ -51,16 +53,16 @@ GEM
5153
logger
5254
faraday-net_http (3.3.0)
5355
net-http
54-
ffi (1.17.0-aarch64-linux-gnu)
55-
ffi (1.17.0-aarch64-linux-musl)
56-
ffi (1.17.0-arm-linux-gnu)
57-
ffi (1.17.0-arm-linux-musl)
58-
ffi (1.17.0-arm64-darwin)
59-
ffi (1.17.0-x86-linux-gnu)
60-
ffi (1.17.0-x86-linux-musl)
61-
ffi (1.17.0-x86_64-darwin)
62-
ffi (1.17.0-x86_64-linux-gnu)
63-
ffi (1.17.0-x86_64-linux-musl)
56+
ffi (1.17.1-aarch64-linux-gnu)
57+
ffi (1.17.1-aarch64-linux-musl)
58+
ffi (1.17.1-arm-linux-gnu)
59+
ffi (1.17.1-arm-linux-musl)
60+
ffi (1.17.1-arm64-darwin)
61+
ffi (1.17.1-x86-linux-gnu)
62+
ffi (1.17.1-x86-linux-musl)
63+
ffi (1.17.1-x86_64-darwin)
64+
ffi (1.17.1-x86_64-linux-gnu)
65+
ffi (1.17.1-x86_64-linux-musl)
6466
fiber-annotation (0.2.0)
6567
fiber-local (1.1.0)
6668
fiber-storage
@@ -123,7 +125,7 @@ GEM
123125
html-pipeline (2.14.3)
124126
activesupport (>= 2)
125127
nokogiri (>= 1.4)
126-
html-proofer (5.0.9)
128+
html-proofer (5.0.10)
127129
addressable (~> 2.3)
128130
async (~> 2.1)
129131
nokogiri (~> 1.13)
@@ -135,7 +137,7 @@ GEM
135137
http_parser.rb (0.8.0)
136138
i18n (1.14.6)
137139
concurrent-ruby (~> 1.0)
138-
io-event (1.7.2)
140+
io-event (1.9.0)
139141
jekyll (3.10.0)
140142
addressable (~> 2.4)
141143
colorator (~> 1.0)
@@ -246,7 +248,7 @@ GEM
246248
gemoji (>= 3, < 5)
247249
html-pipeline (~> 2.2)
248250
jekyll (>= 3.0, < 5.0)
249-
json (2.7.2)
251+
json (2.10.1)
250252
kramdown (2.4.0)
251253
rexml
252254
kramdown-parser-gfm (1.1.0)
@@ -257,32 +259,41 @@ GEM
257259
rb-inotify (~> 0.9, >= 0.9.10)
258260
logger (1.6.1)
259261
mercenary (0.3.6)
262+
metrics (0.12.1)
263+
mini_portile2 (2.8.8)
260264
minima (2.5.1)
261265
jekyll (>= 3.5, < 5.0)
262266
jekyll-feed (~> 0.9)
263267
jekyll-seo-tag (~> 2.1)
264268
minitest (5.25.1)
265269
net-http (0.4.1)
266270
uri
267-
nokogiri (1.16.7-aarch64-linux)
271+
nokogiri (1.18.3)
272+
mini_portile2 (~> 2.8.2)
268273
racc (~> 1.4)
269-
nokogiri (1.16.7-arm-linux)
274+
nokogiri (1.18.3-aarch64-linux-gnu)
270275
racc (~> 1.4)
271-
nokogiri (1.16.7-arm64-darwin)
276+
nokogiri (1.18.3-aarch64-linux-musl)
272277
racc (~> 1.4)
273-
nokogiri (1.16.7-x86-linux)
278+
nokogiri (1.18.3-arm-linux-gnu)
274279
racc (~> 1.4)
275-
nokogiri (1.16.7-x86_64-darwin)
280+
nokogiri (1.18.3-arm-linux-musl)
276281
racc (~> 1.4)
277-
nokogiri (1.16.7-x86_64-linux)
282+
nokogiri (1.18.3-arm64-darwin)
283+
racc (~> 1.4)
284+
nokogiri (1.18.3-x86_64-darwin)
285+
racc (~> 1.4)
286+
nokogiri (1.18.3-x86_64-linux-gnu)
287+
racc (~> 1.4)
288+
nokogiri (1.18.3-x86_64-linux-musl)
278289
racc (~> 1.4)
279290
octokit (4.25.1)
280291
faraday (>= 1, < 3)
281292
sawyer (~> 0.9)
282293
pathutil (0.16.2)
283294
forwardable-extended (~> 2.6)
284-
pdf-reader (2.12.0)
285-
Ascii85 (~> 1.0)
295+
pdf-reader (2.14.1)
296+
Ascii85 (>= 1.0, < 3.0, != 2.0.0)
286297
afm (~> 0.2.1)
287298
hashery (~> 2.0)
288299
ruby-rc4
@@ -311,6 +322,7 @@ GEM
311322
simpleidn (0.2.3)
312323
terminal-table (1.8.0)
313324
unicode-display_width (~> 1.1, >= 1.1.1)
325+
traces (0.15.2)
314326
ttfunk (1.8.0)
315327
bigdecimal (~> 3.1)
316328
typhoeus (1.4.1)
@@ -321,7 +333,7 @@ GEM
321333
uri (0.13.1)
322334
webrick (1.8.2)
323335
yell (2.2.2)
324-
zeitwerk (2.7.1)
336+
zeitwerk (2.7.2)
325337

326338
PLATFORMS
327339
aarch64-linux-gnu
@@ -341,6 +353,7 @@ PLATFORMS
341353
DEPENDENCIES
342354
github-pages (~> 232)
343355
html-proofer
356+
nokogiri (>= 1.18.3)
344357
rake
345358

346359
BUNDLED WITH

_articles/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ You've written things down. Ideally, everybody would read your documentation, bu
8181

8282
Having everything written down, however, helps depersonalize situations when you do need to enforce your rules.
8383

84-
Saying no isn't fun, but _"Your contribution doesn't match this project's criteria"_ feels less personal than _"I don't like your contribution"_.
84+
Saying no isn't fun, but _"Your contribution doesn't match this project's criteria"_ feels less personal than _"I don't like your contribution"_.
8585

8686
Saying no applies to many situations you'll come across as a maintainer: feature requests that don't fit the scope, someone derailing a discussion, doing unnecessary work for others.
8787

_articles/bg/getting-paid.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ related:
8787
Ако не можете да убедите настоящия си работодател да даде приоритет на работата с отворен код, помислете за намиране на нов работодател, който насърчава приноса на служителите към отворен код. Потърсете компании, които подчертават своята отдаденост на работата с отворен код. Например:
8888

8989
* Някои компании, като [Netflix](https://netflix.github.io/), имат уебсайтове, които подчертават тяхното участие в отворен код
90-
* [Zalando](https://opensource.zalando.com) публикува своята [политика за принос с отворен код](https://opensource.zalando.com/docs/using/contributing/) за служители
9190

9291
Проекти, които произхождат от голяма компания, като [Go](https://github.com/golang) или [React](https://github.com/facebook/react), will also likely employ people to work on open source.
9392

0 commit comments

Comments
 (0)