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

V6.10 workflow updated #4

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ linux ]
arch: [ x86_64, aarch64 ]
arch: [ x86_64 ]
compiler: [ ghc94 ]
devx-version: [ 54ea65610338600bd4c4afd04b0b6ff612988fd4 ]

Expand Down Expand Up @@ -421,7 +421,7 @@ jobs:
with:
dockerfile: "./Dockerfile"
failure-threshold: warning
ignore: DL3029 DL3059
ignore: DL3029 DL3059 DL3006

- name: 🐳 Login to DockerHub
if: ${{ github.event_name == 'push' }}
Expand All @@ -433,7 +433,7 @@ jobs:
- name: 📝 Base Variables
id: base-variables
run: |
echo "image=cardanosolutions/${{ matrix.target }}" >> $GITHUB_OUTPUT
echo "image=ritudhwaj/${{ matrix.target }}" >> $GITHUB_OUTPUT

- name: 📝 Tag Variables
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }}
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@

| Ogmios | Cardano-node (mainnet, preview, preprod) |
| --- | --- |
| **`v6.9.*`** | **`10.1.2`** |
| **`v6.10.*`** | **`10.1.3`** |
| `v6.9.*` | `10.1.2` |
| `v6.8.*` | `9.2.0`, `9.1.1` |
| `v6.7.*` | `9.2.0`, `9.1.1` |
| `v6.6.*` | `9.1.1` |
Expand Down
2 changes: 1 addition & 1 deletion clients/TypeScript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cardano-ogmios",
"version": "6.9.0",
"version": "6.10.2",
"private": true,
"description": "TypeScript monorepo with client libraries for Cardano Ogmios",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions clients/TypeScript/packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cardano-ogmios/client",
"version": "6.9.0",
"version": "6.10.2",
"description": "TypeScript client library for Cardano Ogmios",
"engines": {
"node": ">=14"
Expand Down Expand Up @@ -47,7 +47,7 @@
"typescript": "^4.2.3"
},
"dependencies": {
"@cardano-ogmios/schema": "6.9.0",
"@cardano-ogmios/schema": "6.10.2",
"@cardanosolutions/json-bigint": "^1.0.1",
"@types/json-bigint": "^1.0.1",
"bech32": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions clients/TypeScript/packages/repl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cardano-ogmios/repl",
"version": "6.9.0",
"version": "6.10.2",
"description": "REPL for Cardano Ogmios",
"engines": {
"node": ">=14"
Expand Down Expand Up @@ -39,7 +39,7 @@
"typescript": "^4.2.3"
},
"dependencies": {
"@cardano-ogmios/client": "6.9.0",
"@cardano-ogmios/client": "6.10.2",
"yargs-parser": "^20.2.7"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion clients/TypeScript/packages/schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cardano-ogmios/schema",
"version": "6.9.0",
"version": "6.10.2",
"description": "Generated TypeScript from the Cardano Ogmios schema",
"engines": {
"node": ">=14"
Expand Down
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.5"

services:
cardano-node:
image: ghcr.io/intersectmbo/cardano-node:10.1.2
image: ghcr.io/intersectmbo/cardano-node:10.1.3
command: [
"run",
"--config", "/config/config.json",
Expand Down
2 changes: 1 addition & 1 deletion server/ogmios.cabal

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/package.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
_config: !include ".hpack.config.yaml"

name: ogmios
version: 0
version: 6.10.2
stability: stable
github: "cardanosolutions/ogmios"
license: MPL-2.0
Expand Down
Loading