Skip to content

Commit

Permalink
fix: update cat-ci version to 3.1.13 (#592)
Browse files Browse the repository at this point in the history
* fix: update cat-ci version to 3.1.13

* fix: update deny.toml

* fix: fix incorrect name

---------

Co-authored-by: SotaTek-DuyLe <[email protected]>
  • Loading branch information
SotaTek-DuyLe and SotaTek-DuyLe authored Jul 5, 2024
1 parent 3211fec commit 9e0e14a
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Earthfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.1.7 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.1.7 AS cspell-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.1.7 AS postgresql-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.1.13 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.1.13 AS cspell-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.1.13 AS postgresql-ci

FROM debian:stable-slim

Expand Down
4 changes: 2 additions & 2 deletions catalyst-gateway/Earthfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.1.7 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mithril_snapshot:v3.1.7 AS mithril-snapshot-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.1.13 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mithril_snapshot:v3.1.13 AS mithril-snapshot-ci

#cspell: words rustfmt toolsets USERARCH

Expand Down
9 changes: 7 additions & 2 deletions catalyst-gateway/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ deny = [
{ crate = "openssl-sys", use-instead = "rustls" },
"libssh2-sys",
# { crate = "cmake", use-instead = "cc" },
{ crate = "windows", reason = "bloated and unnecessary", use-instead = "ideally inline bindings, practically, windows-sys" },
# { crate = "windows", reason = "bloated and unnecessary", use-instead = "ideally inline bindings, practically, windows-sys" },
]
skip = [
# { crate = "[email protected]", reason = "https://github.com/seanmonstar/reqwest/pull/2130 should be in the next version" },
Expand Down Expand Up @@ -71,7 +71,8 @@ allow = [
"Apache-2.0 WITH LLVM-exception",
"CC0-1.0",
"ISC",
"Unicode-3.0"
"Unicode-3.0",
"MPL-2.0",
]
exceptions = [
#{ allow = ["Zlib"], crate = "tinyvec" },
Expand All @@ -89,6 +90,10 @@ crate = "hdf5-src"
expression = "MIT"
license-files = [{ path = "../LICENSE-MIT", hash = 0x001c7e6c }]

[[licenses.clarify]]
crate = "ring"
expression = "MIT"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
# SPDX considers OpenSSL to encompass both the OpenSSL and SSLeay licenses
# https://spdx.org/licenses/OpenSSL.html
# ISC - Both BoringSSL and ring use this for their new files
Expand Down
2 changes: 1 addition & 1 deletion catalyst-gateway/event-db/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# the database and its associated software.
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.1.7 AS postgresql-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.1.13 AS postgresql-ci

# cspell: words

Expand Down
2 changes: 1 addition & 1 deletion catalyst-gateway/tests/Earthfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.8
IMPORT github.com/input-output-hk/catalyst-ci/earthly/spectral:v3.1.7 AS spectral-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/spectral:v3.1.13 AS spectral-ci

# test-lint-openapi - OpenAPI linting from an artifact
# testing whether the OpenAPI generated during build stage follows good practice.
Expand Down
2 changes: 1 addition & 1 deletion catalyst-gateway/tests/api_tests/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.1.7 AS python-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.1.13 AS python-ci

builder:
FROM python-ci+python-base
Expand Down
2 changes: 1 addition & 1 deletion catalyst_voices/Earthfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION 0.8

IMPORT ../catalyst-gateway AS catalyst-gateway
IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.1.12 AS flutter-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.1.13 AS flutter-ci

# Copy all the necessary files and running bootstrap
builder:
Expand Down
2 changes: 1 addition & 1 deletion catalyst_voices/uikit_example/Earthfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION 0.8

IMPORT ../ AS catalyst-voices
IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.1.12 AS flutter-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.1.13 AS flutter-ci

# local-build-web - build web version of UIKit example.
# Prefixed by "local" to make sure it's not auto triggered, the target was
Expand Down
2 changes: 1 addition & 1 deletion docs/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.1.7 AS docs-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.1.13 AS docs-ci

IMPORT .. AS repo
IMPORT ../catalyst-gateway AS catalyst-gateway
Expand Down

0 comments on commit 9e0e14a

Please sign in to comment.