diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index dc065db3a3..ec30252c09 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -24,7 +24,7 @@ jobs: - name: Build Documentation run: cargo doc --all-features - name: Deploy Documentation - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0 + uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0 with: deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} publish_branch: gh-pages diff --git a/src/runtime/linux.rs b/src/runtime/linux.rs index c0060dc876..9695ec5b00 100644 --- a/src/runtime/linux.rs +++ b/src/runtime/linux.rs @@ -333,10 +333,10 @@ impl Display for LinuxDeviceCgroup { write!( f, "{} {}:{} {}", - &self.typ.unwrap_or_default().as_str(), - &major, - &minor, - &access + self.typ.unwrap_or_default().as_str(), + major, + minor, + access ) } }