diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 7c7cb7d3..ebb52d6c 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -10,7 +10,7 @@ jobs: security_audit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - uses: taiki-e/install-action@cargo-deny - name: Scan for vulnerabilities run: cargo deny check advisories \ No newline at end of file diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index 1c4b2c2a..c5c0dc90 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -32,7 +32,7 @@ jobs: # The uses keyword specifies that this step will run v4 of the actions/checkout action. # This is an action that checks out your repository onto the runner, allowing you to run scripts or other actions against your code (such as build and test tools). # You should use the checkout action any time your workflow will run against the repository's code. - uses: actions/checkout@v4 + uses: actions/checkout@v5 # This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults. # It also takes care of caching intermediate build artifacts. @@ -47,7 +47,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install the Rust toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 with: @@ -59,7 +59,7 @@ jobs: name: Clippy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install the Rust toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 with: @@ -72,7 +72,7 @@ jobs: name: Code coverage runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install the Rust toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 with: