Skip to content

Commit

Permalink
Merge branch 'main' into sync-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Feb 13, 2024
2 parents c007e51 + dc6b02a commit fc0c892
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 4,131 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
brew install openssl@1.1
- name: checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -90,14 +90,14 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ghcr.io/txpipe/dolos
tags: |
Expand All @@ -107,7 +107,7 @@ jobs:
type=semver,pattern=v{{version}}
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io/txpipe
username: ${{ github.actor }}
Expand All @@ -127,7 +127,7 @@ jobs:
mv .github/image/bin/dolos-Linux-x86_64 .github/image/bin/dolos-Linux-amd64
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .github/image
platforms: linux/arm64,linux/amd64
Expand All @@ -142,7 +142,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand Down
Loading

0 comments on commit fc0c892

Please sign in to comment.