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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Build
run: cargo build --verbose
- name: Clippy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- &checkout
name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: true
Comment on lines +19 to 22
Copy link
Contributor

Choose a reason for hiding this comment

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

P2 v6 changes credential storage for Docker container actions

actions/checkout@v6 changed how persist-credentials works: credentials are now stored under $RUNNER_TEMP instead of directly in the local git config. For Docker container action scenarios (like release-plz/action@v0.5, which is a Docker container action), this requires a minimum Actions runner version of v2.329.0 to access the persisted credentials.

Since this workflow uses ubuntu-latest (GitHub-hosted runners), the runner version requirement should be met automatically. However, it's worth being aware of this behavioral change in case any self-hosted runners are ever added in the future, or if the release action has trouble accessing git credentials after this bump.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Run tests
run: cargo test --verbose
- name: Run benchmarks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: crate-ci/typos@v1.43.4