Skip to content

Commit

Permalink
refresh: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
idawnlight committed Aug 21, 2023
1 parent 990b21f commit 634ee82
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 33 deletions.
42 changes: 28 additions & 14 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,37 @@
name: CI

on:
push:
branches:
- src
push:
branches:
- src

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Hexo Action
uses: sma11black/[email protected]
with:
# Github user name
user_name: HanyuuLu # default is
# Github email
user_email: [email protected] # default is
# The deploy key for Github Pages repo
deploy_key: ${{ secrets.DEPLOY_KEY }}
- name: Checkout
uses: actions/checkout@v1
with:
submodules: true # Checkout private submodules(themes or something else).

# Caching dependencies to speed up workflows. (GitHub will remove any cache entries that have not been accessed in over 7 days.)
- name: Cache node modules
uses: actions/cache@v1
id: cache
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci

- name: Hexo Action
uses: sma11black/[email protected]
with:
# The deploy key for Github Pages repo
deploy_key: ${{ secrets.DEPLOY_KEY }}
commit_msg: ${{ github.event.head_commit.message }}
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "0.0.0",
"private": true,
"hexo": {
"version": "6.2.0"
"version": "6.3.0"
},
"dependencies": {
"hexo": "^6.2.0",
"hexo": "^6.3.0",
"hexo-deployer-git": "^3.0.0",
"hexo-generator-archive": "^1.0.0",
"hexo-generator-category": "^1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions themes/anodyne/_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Logo
logo_image_source: https://raw.githubusercontent.com/seumsc/pages/master/res/MSCWeb.png
logo_image_source: https://i.dawnlab.me/0dc314d22f04b05eaab60fd0e59c354b.png

# Index Page
index_banner_text: Microsoft Student Club @ SEU ~
Expand All @@ -24,7 +24,7 @@ archive_date_format: MMM YYYY
archive_font_awesome_icon_css: fa-folder-open

# About Widget
about_widget_avatar_url: https://raw.githubusercontent.com/seumsc/pages/master/res/MSCWeb.png
about_widget_avatar_url: https://i.dawnlab.me/0dc314d22f04b05eaab60fd0e59c354b.png
about_widget_text: "这里是位于东南大学九龙湖校区的微软学生俱乐部,我们欢迎每个感兴趣的同学参与活动,予力众生,成就非凡。"


Expand Down
4 changes: 2 additions & 2 deletions themes/anodyne/layout/_partial/head.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@
<title><%= title.join(' - ') %></title>

<!-- Tachyons Core CSS -->
<link rel="stylesheet" href="https://unpkg.com/tachyons/css/tachyons.min.css">
<link rel="stylesheet" href="https://lib.baomitu.com/tachyons/4.11.1/tachyons.min.css">

<!-- Custom Fonts -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://lib.baomitu.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">

<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
Expand Down

0 comments on commit 634ee82

Please sign in to comment.