-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into retract-locally-small
- Loading branch information
Showing
4 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,15 +34,15 @@ jobs: | |
agda: ['2.7.0'] | ||
steps: | ||
- name: Checkout our repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
path: master | ||
- name: Setup Agda | ||
uses: wenkokke/[email protected] | ||
with: | ||
agda-version: ${{ matrix.agda }} | ||
|
||
- uses: actions/cache/restore@v3 | ||
- uses: actions/cache/restore@v4 | ||
id: cache-agda-formalization | ||
name: Restore Agda formalization cache | ||
with: | ||
|
@@ -61,13 +61,13 @@ jobs: | |
make check | ||
- name: Save Agda build cache | ||
uses: actions/cache/save@v3 | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: master/_build | ||
key: '${{ steps.cache-agda-formalization.outputs.cache-primary-key }}' | ||
|
||
# Install Python and friends for website generation only where needed | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
with: | ||
python-version: '3.8' | ||
|
@@ -92,7 +92,7 @@ jobs: | |
# keep the same key for a branch and update it on pushes. | ||
- name: Save pre-website cache | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
uses: actions/cache/save@v3 | ||
uses: actions/cache/save@v4 | ||
with: | ||
key: pre-website-${{ github.run_id }} | ||
path: master/docs | ||
|
@@ -106,29 +106,29 @@ jobs: | |
actions: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: master | ||
|
||
- uses: peaceiris/actions-mdbook@v1 | ||
- uses: peaceiris/actions-mdbook@v2 | ||
with: | ||
mdbook-version: '0.4.34' | ||
|
||
- uses: baptiste0928/cargo-install@v2 | ||
- uses: baptiste0928/cargo-install@v3 | ||
with: | ||
crate: mdbook-linkcheck | ||
version: '0.7.7' | ||
|
||
# Install Python and friends for website generation only where needed | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.8' | ||
check-latest: true | ||
cache: 'pip' | ||
|
||
- run: python3 -m pip install -r master/scripts/requirements.txt | ||
|
||
- uses: actions/cache/restore@v3 | ||
- uses: actions/cache/restore@v4 | ||
with: | ||
key: pre-website-${{ github.run_id }} | ||
path: master/docs | ||
|
@@ -162,14 +162,14 @@ jobs: | |
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.8' | ||
check-latest: true | ||
cache: 'pip' | ||
|
||
- run: python3 -m pip install -r scripts/requirements.txt | ||
|
||
- uses: pre-commit/[email protected].0 | ||
- uses: pre-commit/[email protected].1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters