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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# The next step uploads a "special" artifact used by the
# `actions/deploy-pages` below to deploy the website.
- name: Upload github-pages artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
# We also want to upload an artifact that can be viewed locally without
# messing up what the `actions/deploy-pages` workflow expects. To do this,
# we need first to rename the `_site` directory
Expand All @@ -30,7 +30,7 @@ jobs:
mkdir preview
cp -r _site preview/open-source
- name: Upload preview
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Preview
path: preview
Expand All @@ -54,7 +54,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v7
with:
name: Preview
- name: Link Checker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6

- name: Check for typos
uses: crate-ci/typos@2d0ce569feab1f8752f1dde43cc2f2aa53236e06 # v1
uses: crate-ci/typos@5c19779cb52ea50e151f5a10333ccd269227b5ae # v1
Loading