Skip to content

Commit 4f16cdc

Browse files
committed
Update to jekyll-theme-amethyst 1.0
1 parent cb3553d commit 4f16cdc

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/github-pages.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
DEPLOY_DIR: _site/
1313
DEPLOY_BRANCH: gh-pages
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616

1717
- name: Prepare branch
1818
run: |
@@ -23,7 +23,7 @@ jobs:
2323
2424
- uses: ruby/setup-ruby@v1
2525
with:
26-
ruby-version: 2.7
26+
ruby-version: 3.0
2727
bundler-cache: true
2828
# If your site is in a subdirectory
2929
# working-directory: ./

.github/workflows/spider-check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
if: ${{ github.repository_owner == 'qunitjs' }} # skip on forks
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v4
3030
with:
3131
repository: jquery/hydra-link-checker
3232
ref: v2.0.0

.github/workflows/typesense.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
name: typesense
22
on:
3-
# Once a day at 11:30 UTC <https://crontab.guru/>
3+
# Once a week on Wednesday at 11:45 UTC <https://crontab.guru/>
44
schedule:
5-
- cron: '30 11 * * *'
5+
- cron: '45 11 * * 3'
66
# Or after a deployment
77
push:
88
branches:
99
- main
10+
- typesense
1011
# Or manually
1112
workflow_dispatch:
1213

1314
jobs:
1415
typesense:
1516
name: Update Typesense
16-
if: ${{ github.repository_owner == 'jquery' }} # skip on forks
17+
if: ${{ github.repository_owner == 'qunitjs' }} # skip on forks
1718
runs-on: ubuntu-latest
1819
steps:
19-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2021
- name: Docsearch Scraper
2122
shell: bash
2223
run: |
23-
# 0.6.0.rc1: https://github.com/typesense/typesense-docsearch-scraper/issues/36
2424
docker run \
2525
-e TYPESENSE_API_KEY=${{ secrets.TYPESENSE_ADMIN_KEY }} \
2626
-e TYPESENSE_HOST="${{ secrets.TYPESENSE_HOST }}" \
2727
-e TYPESENSE_PORT="443" \
2828
-e TYPESENSE_PROTOCOL="https" \
2929
-e CONFIG="$(cat docsearch.config.json | jq -r tostring)" \
30-
typesense/docsearch-scraper:0.6.0.rc2
30+
typesense/docsearch-scraper:0.8.0

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ ruby RUBY_VERSION
33

44
# To apply changes, run `bundle update`.
55

6-
gem "jekyll-theme-amethyst", "0.5.2", group: :jekyll_plugins
6+
gem "jekyll-theme-amethyst", "~> 1.0.0", group: :jekyll_plugins

0 commit comments

Comments
 (0)