From 1209ca4c48b609bc0f7b05085eb769c73b8cbf63 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 14 Oct 2023 09:54:57 +0700 Subject: [PATCH] ci: Update to `actions/checkout@v4`. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2c29d2..7139bff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: run: | rustc -Vv cargo -V - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: cargo build --verbose - run: cargo test --verbose - run: cargo build --verbose --manifest-path ./dxf2json/Cargo.toml @@ -32,7 +32,7 @@ jobs: - uses: hecrj/setup-rust-action@v1 with: components: rustfmt - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: cargo fmt --all -- --check publish: @@ -41,5 +41,5 @@ jobs: needs: [build, formatting] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: cargo publish --token ${{ secrets.CRATES_IO_API_KEY }} --verbose