Skip to content

Commit

Permalink
.github: update versions of all actions used
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Król <[email protected]>
  • Loading branch information
pietrushnic committed Jan 28, 2024
1 parent 00cb2bc commit 6e06e3d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
environment: prod
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
fetch-depth: 1

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.1
with:
node-version: 16
node-version: 20

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
uses: peaceiris/actions-hugo@v2.6.0
with:
hugo-version: '0.110.0'
hugo-version: "0.111.3"
extended: true

- name: Setup Env
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/seo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1.8.0
uses: lycheeverse/lychee-action@v1.9.2
with:
fail: true
args: --timeout 60 --max-redirects 10 -a 403,500,502,503,504 .
Expand All @@ -26,27 +26,27 @@ jobs:
name: Check orphan pages
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
submodules: true

- name: Checkout SEO Spy
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
repository: 3mdeb/seo-spy
path: seo-spy

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: "3.9"

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r seo-spy/requirements.txt
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
uses: peaceiris/actions-hugo@v2.6.0
with:
extended: true

Expand All @@ -59,34 +59,34 @@ jobs:
- name: Check orphan pages
uses: 3mdeb/seo-spy-action@main
with:
domain: 'http://localhost:1313'
domain: "http://localhost:1313"

seo_spy_canonical_links:
runs-on: ubuntu-latest
name: Check canonical links
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
submodules: true

- name: Checkout SEO Spy
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
repository: 3mdeb/seo-spy
path: seo-spy

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: "3.9"

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r seo-spy/requirements.txt
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
uses: peaceiris/actions-hugo@v2.6.0
with:
extended: true

Expand Down

0 comments on commit 6e06e3d

Please sign in to comment.