Skip to content

Commit

Permalink
bump to github action/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
meuter committed Apr 7, 2024
1 parent d48c14f commit 9cdde59
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build with default feature
run: cargo build --workspace
- name: Build with all features
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Expand Up @@ -10,6 +10,6 @@ jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --workspace --all-targets --all-features --tests
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Expand Up @@ -10,6 +10,6 @@ jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Doc
run: cargo doc --workspace --all-features
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
todos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Todo (Sqlite)
run: cargo run --example todo
transactions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -12,13 +12,13 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test with default feature
run: cargo test --workspace
integration_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Start Postgres and MySql sandbox
run: docker compose up -d
- name: Run all integration tests
Expand Down

0 comments on commit 9cdde59

Please sign in to comment.