Skip to content

Commit

Permalink
Update GitHub action versions to latest.
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitryhil committed Mar 12, 2024
1 parent 7981307 commit 71d3579
Show file tree
Hide file tree
Showing 3 changed files with 571 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
- name: Run ${{ matrix.ci_step }}
run: ${{ matrix.command }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ github.workspace }}/coreum/coverage/${{ matrix.codecov-name }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout coreum
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
path: coreum
fetch-depth: 0
- name: Set up coreum
run: echo "$(pwd)/coreum/bin" >> $GITHUB_PATH
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand All @@ -42,7 +42,7 @@ jobs:
sha256sum cored-* > checksums.txt
- name: Create release
if: steps.check-tag.outputs.release == 'true'
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
generate_release_notes: true
Expand All @@ -54,7 +54,7 @@ jobs:
checksums.txt
- name: Create release candidate
if: steps.check-tag.outputs.release_candidate == 'true'
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
prerelease: true
Expand Down
Loading

0 comments on commit 71d3579

Please sign in to comment.