Skip to content

Commit

Permalink
Add sha256 dep
Browse files Browse the repository at this point in the history
fix deprecation notice stratum-mining#865
  • Loading branch information
fi3 authored and plebhash committed May 7, 2024
1 parent f951edd commit e33990f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:
options: --security-opt seccomp=unconfined
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Generate code coverage
run: |
./tarpaulin.sh
- name: Archive Tarpaulin code coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tarpaulin-report
path: |
Expand All @@ -56,7 +56,7 @@ jobs:

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

- uses: actions-rs/toolchain@v1
with:
Expand All @@ -82,14 +82,14 @@ jobs:
run: sh ./message-generator-tests.sh

- name: Archive MG code coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: 'target/*.xml'

- name: Archive log files
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
path: './utils/message-generator/*.log'
Expand All @@ -103,10 +103,10 @@ jobs:
# steps:

# - name: Checkout repository
# uses: actions/checkout@v3
# uses: actions/checkout@v4

# - name: Download all workflow run artifacts
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4

# - name: Display structure of downloaded files
# run: ls -R
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-bin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
matrix:
os: [ ubuntu-20.04, macos-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
matrix:
os: [ ubuntu-20.04, macos-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
matrix:
os: [ ubuntu-20.04, macos-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:
matrix:
os: [ ubuntu-20.04, macos-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run check-versioning-lib-release.sh
run: |
Expand All @@ -30,7 +30,7 @@ jobs:
exit 1
fi
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down

0 comments on commit e33990f

Please sign in to comment.