Skip to content

Commit

Permalink
ci: Update to actions/checkout@v4. (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Feb 23, 2024
1 parent 4e940ec commit a3a8192
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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

0 comments on commit a3a8192

Please sign in to comment.