Skip to content

Commit eee77ae

Browse files
committed
1 parent b88a68b commit eee77ae

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/count-votes.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
# Check out code using git
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
with:
1515
submodules: "recursive"
1616
fetch-depth: 0
1717

1818
# Install node with yarn
1919
- name: Setup Yarn
20-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v4
2121
- run: yarn install
2222

2323
# Run list-reactions.js with Node and pass the authentication token

.github/workflows/gh-pages.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- name: Read .env hugo version
1515
id: hugo-version
@@ -19,13 +19,13 @@ jobs:
1919
echo "::set-output name=DOCSY_VERSION::${DOCSY_VERSION}"
2020
2121
- name: Add hugo nodejs dependencies
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: "18"
2525
cache: 'npm'
2626

2727
- name: Setup Hugo
28-
uses: peaceiris/actions-hugo@v2
28+
uses: peaceiris/actions-hugo@v3
2929
with:
3030
# sync versions with docker-compose .env ala
3131
# https://github.com/marketplace/actions/hugo-setup#%EF%B8%8F-read-hugo-version-from-file
@@ -41,7 +41,7 @@ jobs:
4141
4242
- name: Deploy to Pages
4343
if: github.event_name == 'push'
44-
uses: peaceiris/actions-gh-pages@v3
44+
uses: peaceiris/actions-gh-pages@v4
4545
env:
4646
HUGO_ENV: "production"
4747
with:

.github/workflows/run-htmltest.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
htmltest:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- name: Read .env hugo version
1515
id: hugo-version
@@ -19,13 +19,13 @@ jobs:
1919
echo "::set-output name=DOCSY_VERSION::${DOCSY_VERSION}"
2020
2121
- name: Add hugo nodejs dependencies
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: "18"
2525
cache: 'npm'
2626

2727
- name: Setup Hugo
28-
uses: peaceiris/actions-hugo@v2
28+
uses: peaceiris/actions-hugo@v3
2929
with:
3030
# sync versions with docker-compose .env ala
3131
# https://github.com/marketplace/actions/hugo-setup#%EF%B8%8F-read-hugo-version-from-file
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
config: .htmltest.yml
4646
- name: archive htmltest results
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: htmltest-report
5050
path: tmp/.htmltest/htmltest.log

content/en/_index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ <h3 class="font-weight-light text-center">
4141

4242
{{< blocks/section color="light" >}}
4343
{{% blocks/feature icon="fas fa-project-diagram" title="How to Participate" url="/contribute" url_text="How to contribute" %}}
44-
You can [contribute to OMF activities](/contribute/) as a representative of a member organization or
45-
as an individual in a [Working Group](/about/working-groups/).
44+
You can [contribute to OMF activities]({{< relref "contribute" >}}) as a representative of a member organization or
45+
as an individual in a [Working Group]({{< relref "working-groups" >}}).
4646
{{% /blocks/feature %}}
4747

4848
{{% blocks/feature icon="fas fa-users" title="Community" url="/about/community" %}}

0 commit comments

Comments
 (0)