diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 3e6cf7e..d88b750 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -26,7 +26,7 @@ Please fill the template below
- Device/Os: [e.g. Android 10]
- Type: [e.g. Desktop/Mobile]
- Browser and version [e.g. Chrome 86.0]:
- - Hugo Version [ >=0.83.0 expected]:
+ - Hugo Version [ >=0.112.4 expected]:
- Theme Version [e.g. v4.0, master, or commit-id ]:
**Steps to reproduce the behavior:**
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 1a4dd9b..eeb6e55 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -2,4 +2,4 @@ blank_issues_enabled: false
contact_links:
- name: PaperMod Discussions
url: https://github.com/adityatelange/hugo-PaperMod/discussions
- about: Please ask and answer questions/doubts here, do not open an issue for questions.
+ about: Please ask and answer questions/doubts here, DO NOT open an issue for questions.
diff --git a/.github/ISSUE_TEMPLATE/new-blank-issue.md b/.github/ISSUE_TEMPLATE/new-blank-issue.md
deleted file mode 100644
index dbc48f1..0000000
--- a/.github/ISSUE_TEMPLATE/new-blank-issue.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-name: New Blank Issue
-about: Anything other than bug report
-title: ""
-labels: ""
-assignees: ""
----
diff --git a/.github/ISSUE_TEMPLATE/proposal.md b/.github/ISSUE_TEMPLATE/proposal.md
new file mode 100644
index 0000000..c7e35e1
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/proposal.md
@@ -0,0 +1,7 @@
+---
+name: Proposal
+about: Propose a new feature or change to a feature for Hugo-PaperMod.
+title: ""
+labels: "enhancement"
+assignees: ""
+---
diff --git a/.github/stale.yml b/.github/stale.yml
deleted file mode 100644
index 7b5f571..0000000
--- a/.github/stale.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-# Number of days of inactivity before an issue becomes stale
-daysUntilStale: 7
-# Number of days of inactivity before a stale issue is closed
-daysUntilClose: 3
-# Issues with these labels will never be considered stale
-exemptLabels:
- - pinned
- - keep
-# Label to use when marking an issue as stale
-staleLabel: stale
-# Comment to post when marking an issue as stale. Set to `false` to disable
-markComment: >
- This issue 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.
-# Comment to post when closing a stale issue. Set to `false` to disable
-closeComment: false
diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml
index 305a6de..6a43bcd 100644
--- a/.github/workflows/gh-pages.yml
+++ b/.github/workflows/gh-pages.yml
@@ -15,7 +15,7 @@ on:
hugoVersion:
description: "Hugo Version"
required: false
- default: "0.83.0"
+ default: "0.112.4"
# Allow one concurrent deployment
concurrency:
@@ -38,14 +38,11 @@ jobs:
build:
runs-on: ubuntu-latest
env:
- HUGO_VERSION: "0.83.0"
+ HUGO_VERSION: ${{ github.event.inputs.hugoVersion || '0.112.4' }}
steps:
- - name: Check version
- if: ${{ github.event.inputs.hugoVersion }}
- run: export HUGO_VERSION="${{ github.event.inputs.hugoVersion }}"
- name: Install Hugo CLI
run: |
- wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.deb \
+ wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Checkout
uses: actions/checkout@v3
@@ -53,7 +50,7 @@ jobs:
ref: exampleSite
- name: Setup Pages
id: pages
- uses: actions/configure-pages@v1
+ uses: actions/configure-pages@v3
- name: Get Theme
run: git submodule update --init --recursive
- name: Update theme to Latest commit
@@ -61,10 +58,10 @@ jobs:
- name: Build with Hugo
run: |
hugo \
- --buildDrafts --gc --verbose \
+ --buildDrafts --gc \
--baseURL ${{ steps.pages.outputs.base_url }}
- name: Upload artifact
- uses: actions/upload-pages-artifact@v1
+ uses: actions/upload-pages-artifact@v2
with:
path: ./public
# Deployment job
@@ -77,4 +74,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
- uses: actions/deploy-pages@v1
+ uses: actions/deploy-pages@v2
diff --git a/LICENSE b/LICENSE
index 1580f7f..07edff3 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2020 nanxiaobei and adityatelange
-Copyright (c) 2021-2022 adityatelange
+Copyright (c) 2021-2024 adityatelange
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index 286617a..fa89b1a 100644
--- a/README.md
+++ b/README.md
@@ -3,20 +3,20 @@