diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index ddaecbde..d21ed1f2 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -45,7 +45,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout tagged commit - uses: actions/checkout@v3.0.1 + uses: actions/checkout@v3.0.2 with: ref: ${{ github.event.release.target_commitish }} token: ${{ secrets.BOTTY_GITHUB_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acec3453..5bbff145 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3.0.1 + uses: actions/checkout@v3.0.2 + - uses: Swatinem/rust-cache@v1.4.0 @@ -41,7 +42,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout sources - uses: actions/checkout@v3.0.1 + uses: actions/checkout@v3.0.2 - uses: Swatinem/rust-cache@v1.4.0 @@ -74,7 +75,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout sources - uses: actions/checkout@v3.0.1 + uses: actions/checkout@v3.0.2 - uses: Swatinem/rust-cache@v1.4.0 @@ -110,7 +111,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3.0.1 + uses: actions/checkout@v3.0.2 - uses: Swatinem/rust-cache@v1.4.0 diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 46976cb4..a87f323b 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -11,7 +11,7 @@ jobs: if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.0.1 + - uses: actions/checkout@v3.0.2 - name: Extract version from branch name id: extract-version diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index 792fdbee..3d012d33 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -12,7 +12,7 @@ jobs: name: "Draft a new release" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.0.1 + - uses: actions/checkout@v3.0.2 with: token: ${{ secrets.BOTTY_GITHUB_TOKEN }} diff --git a/.github/workflows/preview-release.yml b/.github/workflows/preview-release.yml index ea072bae..8499248f 100644 --- a/.github/workflows/preview-release.yml +++ b/.github/workflows/preview-release.yml @@ -10,7 +10,7 @@ jobs: name: Create preview release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.0.1 + - uses: actions/checkout@v3.0.2 - name: Delete 'preview' release uses: larryjoelane/delete-release-action@v1.0.24 diff --git a/CHANGELOG.md b/CHANGELOG.md index 51ecbc44..e66e84c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Change Monero nodes to [Rino tool nodes](https://community.rino.io/nodes.html) - Revert logs to use rfc3339 local time formatting. +- Update from monero v17.2.0 to monero v17.3.0 - Always write logs as JSON to files ### Added diff --git a/Cargo.lock b/Cargo.lock index c84b04eb..495cdfbd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,9 +83,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.56" +version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27" +checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" [[package]] name = "arrayref"