Skip to content

Commit

Permalink
chore(deps): pin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Apr 12, 2024
1 parent 46d5b8a commit aec4eb3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo +nightly fmt --all -- --check
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- run: cargo clippy --workspace --all-targets --features derive

test-min:
name: Test Minimal Versions
runs-on: ubuntu-latest
services:
localstack:
image: localstack/localstack
image: localstack/localstack@sha256:e1017740b2726c6e86e8e917e9a1955281e49854694f90c87b6e527baa1bdbbb
ports:
- 4566:4566
env:
Expand All @@ -45,9 +45,9 @@ jobs:
RUST_LOG_SPAN_EVENTS: close
AWS_DEFAULT_REGION: us-east-1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- uses: taiki-e/install-action@nextest
- run: cargo nextest run --workspace --no-fail-fast --features derive --run-ignored all -Zminimal-versions
- run: cargo test --workspace --doc --no-fail-fast --features derive -Zminimal-versions
Expand All @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
services:
localstack:
image: localstack/localstack
image: localstack/localstack@sha256:e1017740b2726c6e86e8e917e9a1955281e49854694f90c87b6e527baa1bdbbb
ports:
- 4566:4566
env:
Expand All @@ -69,9 +69,9 @@ jobs:
RUST_LOG_SPAN_EVENTS: close
AWS_DEFAULT_REGION: us-east-1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- uses: taiki-e/install-action@nextest
- run: cargo nextest run --workspace --no-fail-fast --features derive,once_cell --run-ignored all
- run: cargo test --workspace --doc --no-fail-fast --features derive,once_cell
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
services:
localstack:
image: localstack/localstack
image: localstack/localstack@sha256:e1017740b2726c6e86e8e917e9a1955281e49854694f90c87b6e527baa1bdbbb
ports:
- 4566:4566
env:
Expand All @@ -92,9 +92,9 @@ jobs:
RUST_LOG_SPAN_EVENTS: close
AWS_DEFAULT_REGION: us-east-1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- uses: taiki-e/install-action@nextest
- run: cargo nextest run --workspace --no-fail-fast --features derive --run-ignored all
- run: cargo test --workspace --doc --no-fail-fast --features derive
Expand All @@ -109,8 +109,8 @@ jobs:
- bans licenses sources
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- run: cargo install --locked cargo-deny
- run: cargo deny --all-features check ${{ matrix.checks }}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

services:
localstack:
image: localstack/localstack
image: localstack/localstack@sha256:e1017740b2726c6e86e8e917e9a1955281e49854694f90c87b6e527baa1bdbbb
volumes:
- "/private${TMPDIR}/localstack:/var/lib/localstack"
# - "./localstack:/docker-entrypoint-initaws.d"
Expand Down

0 comments on commit aec4eb3

Please sign in to comment.