Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/check_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand All @@ -47,15 +47,15 @@ jobs:
python scripts/webp_conversion/check_images_in_pr.py

- name: Find Comment
uses: peter-evans/find-comment@v3
uses: peter-evans/find-comment@v4
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
comment-author: 'github-actions[bot]'
body-includes: mage files/references

- name: Create or update comment
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cleanup-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/data-processing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# Repository Setup
#================
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
# Checkout the repository code to the runner environment

#======================
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
# Install Python 3.11 for running scripts
#========================================
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip'
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
# Setup Node.js for bibliography processing
#========================================
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '18'
cache: 'npm'
Expand Down Expand Up @@ -446,7 +446,7 @@ jobs:
#========================================
- name: Upload data artifact
id: upload-artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: data-artifact
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# Repository Setup
# =======================
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
# Upload built website as artifact for deployment
#========================================
- name: Upload site artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: forrt-website-${{ github.run_number }}
path: public/
Expand All @@ -195,7 +195,7 @@ jobs:
# Download website artifact for production deployment
#========================================
- name: Download Artifact - Website
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: forrt-website-${{ github.run_number }}
path: ${{ github.repository }}/forrt-website
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/link-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download latest build artifact
uses: dawidd6/action-download-artifact@07ab29fd4a977ae4d2b275087cf67563dfdf0295
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:

- name: Create issue from lychee output
if: steps.lychee.outputs.exit_code != 0 || steps.doi-check.outputs.found == 'true'
uses: peter-evans/create-issue-from-file@v5
uses: peter-evans/create-issue-from-file@v6
with:
title: "Link Checker Report"
content-filepath: /tmp/lychee/out.md
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/spell-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -47,7 +47,7 @@ jobs:
echo "EOF" >> $GITHUB_OUTPUT

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand All @@ -66,7 +66,7 @@ jobs:

- name: Find Comment
if: github.event_name == 'pull_request'
uses: peter-evans/find-comment@v3
uses: peter-evans/find-comment@v4
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
Expand All @@ -75,7 +75,7 @@ jobs:

- name: Create or update comment
if: github.event_name == 'pull_request'
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/staging-aggregate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
has-prs: ${{ steps.aggregate.outputs.has_prs }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.STAGING_GITHUB_TOKEN }}
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
HUGO_EXTENDED: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ needs.aggregate-prs.outputs.aggregated-branch || 'master' }}

Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
HUGO_ENV: staging

- name: Upload site artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: forrt-website-aggregate-${{ github.run_number }}
path: public/
Expand All @@ -403,13 +403,13 @@ jobs:
if: always() && (needs.build.result == 'success' || github.event_name == 'schedule')
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ secrets.STAGING_GITHUB_TOKEN }}

- name: Download Artifact - Website
if: needs.build.result == 'success'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: forrt-website-aggregate-${{ github.run_number }}
path: ${{ github.repository }}/forrt-website
Expand Down
Loading