Skip to content
This repository was archived by the owner on Feb 8, 2026. It is now read-only.
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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
fetch-depth: 0
token: ${{secrets.RELEASE_PLZ_TOKEN}}
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
mkdir ../book

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: 'main'
- run: mdbook build
Expand All @@ -68,7 +68,7 @@ jobs:
mv ./book ../book/main

- name: tagcheckout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ steps.latestprerelease.outputs.prereleasetag }}

Expand All @@ -77,9 +77,8 @@ jobs:
run: |
mv ./book ../book/pre


- name: tagcheckout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ steps.latestrelease.outputs.releasetag }}

Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Static Analysis

on:
pull_request:
branches:
- '!release-plz-*'
branches-ignore:
- 'release-plz-*'
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Theoretically, the original should have worked, but didn't seem to be running. This seems to work now.

push:
branches: ["main"]

Expand All @@ -20,8 +20,8 @@ jobs:
steps:
- name: Dependencies
run: sudo apt-get update && sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev clang lld
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -41,8 +41,8 @@ jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -62,8 +62,8 @@ jobs:
check-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -80,7 +80,7 @@ jobs:
mdbook:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
Expand All @@ -92,7 +92,7 @@ jobs:
check-markdown-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: check dead links
continue-on-error: true
id: run1
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Tests

on:
pull_request:
branches:
- '!release-plz-*'
branches-ignore:
- 'release-plz-*'
push:
branches: ["main"]

Expand All @@ -20,8 +20,8 @@ jobs:
steps:
- name: Dependencies
run: sudo apt-get update && sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev clang lld
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -38,8 +38,8 @@ jobs:
tests-mac:
runs-on: mac-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -56,8 +56,8 @@ jobs:
tests-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down