diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 71190e3..a52edd5 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -14,7 +14,7 @@ jobs: security_audit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 4316632..c005881 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -27,7 +27,7 @@ jobs: security-events: write steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Rust toolchain uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c262825..0225111 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -10,7 +10,7 @@ jobs: code-coverage: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install components run: rustup component add llvm-tools-preview - uses: taiki-e/install-action@cargo-llvm-cov diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8864aa7..9d75187 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: cancel-in-progress: false steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # `fetch-depth: 0` is needed to clone all the git history, which is necessary to # determine the next version and build the changelog. @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Use your favorite way to install the Rust toolchain. # The action I'm using here is a popular choice. - name: Install Rust toolchain diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a2a6034..1d7d42a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests run: cargo test --workspace --all-features - uses: taiki-e/install-action@cargo-hack