Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all dependencies #58

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: cargo llvm-cov test --verbose --lib --lcov --output-path lcov.unit-tests.info

- name: Upload artifact
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: lcov.unit-tests.info
path: lcov.unit-tests.info
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
run: docker compose down

- name: Upload artifact
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: lcov.integration-tests.info
path: lcov.integration-tests.info
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
run: ./scripts/release

- name: Upload artifact
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: terrashine-binary
path: target/release/terrashine
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/rust:1.72@sha256:94530b7512eddf3207e50801c1ecb9890908caf99a1d9d2ade95aa5d4b2bc1c8
FROM docker.io/library/rust:1.72@sha256:8a4ca3ca75afbc97bcf5362e9a694fe049d15734fbbaf82b8b7e224616c1254b
WORKDIR /usr/src/app
COPY Cargo.toml Cargo.lock .
RUN mkdir src/ && touch src/main.rs
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
POSTGRES_PASSWORD: password

minio:
image: quay.io/minio/minio:latest@sha256:76868af456548aab229762d726271b0bf8604a500416b3e9bdcb576940742cda
image: quay.io/minio/minio:latest@sha256:7e697b900f60d68e9edd2e8fc0dccd158e98938d924298612c5bbd294f2a1e65
command: [ "server", "/data", "--console-address", ":9001" ]
network_mode: host
# ports:
Expand All @@ -26,7 +26,7 @@ services:
aws-cli:
depends_on:
- minio
image: docker.io/amazon/aws-cli@sha256:ac2c7d3827a8fef1024357ada9c6ccd8d0ce098a85cffd6803a52bb8cb4842ed
image: docker.io/amazon/aws-cli@sha256:73ed5665c3c28ae3ac979f6791a8119f25a594ad7b20972b7a47723c1a17c71b
entrypoint: aws
network_mode: host
command:
Expand Down Expand Up @@ -56,7 +56,7 @@ services:
type: bind

nginx:
image: docker.io/library/nginx@sha256:104c7c5c54f2685f0f46f3be607ce60da7085da3eaa5ad22d3d9f01594295e9c
image: docker.io/library/nginx@sha256:6926dd802f40e5e7257fded83e0d8030039642e4e10c4a98a6478e9c6fe06153
network_mode: host
volumes:
- ./resources/test/nginx:/etc/nginx:ro
Expand Down