From fd669c69cdfc9cabd90a47f0c463b100e11c9a71 Mon Sep 17 00:00:00 2001 From: Jacob Asper Date: Sat, 30 Aug 2025 09:54:37 -0400 Subject: [PATCH] update github checkout action to v5 --- .github/workflows/audit.yml | 2 +- .github/workflows/general.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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: