Skip to content

Commit

Permalink
Let's try to upgrade Github Actions scripts
Browse files Browse the repository at this point in the history
(cherry picked from commit 0a09561)
  • Loading branch information
aivve committed Sep 2, 2024
1 parent ead6ca8 commit a25fab4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
echo "artifact_path=$build_folder/src/Release/$release_name" >> $env:GITHUB_OUTPUT
- name: Upload To GH Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build.outputs.release_name }}
path: ${{ steps.build.outputs.artifact_path }}
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
mv build/src/walletd.exe build/karbo
mv build/src/vanitygen.exe build/karbo
- name: Upload To GH Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.setup.outputs.release_name }}
path: build/karbo
Expand All @@ -117,7 +117,7 @@ jobs:

build-macos:
name: macOS
runs-on: macos-11
runs-on: macos-12
steps:
- uses: actions/checkout@master
with:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
echo "artifact_path=$build_folder/$release_name" >> $GITHUB_OUTPUT
- name: Upload To GH Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build.outputs.release_name }}
path: ${{ steps.build.outputs.artifact_path }}
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
echo "artifact_path=$build_folder/$release_name" >> $GITHUB_OUTPUT
- name: Upload To GH Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build.outputs.release_name }}
path: ${{ steps.build.outputs.artifact_path }}
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
echo "artifact_path=$build_folder/$release_name" >> $GITHUB_OUTPUT
- name: Upload To GH Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build.outputs.release_name }}
path: ${{ steps.build.outputs.artifact_path }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
echo "krb_ver=${krb_ver}" >> $env:GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v0.1.8
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.build.outputs.asset_path }}
name: Karbo CLI Suite ${{ steps.build.outputs.krb_ver }}
Expand All @@ -59,7 +59,7 @@ jobs:

build-macos:
name: macOS
runs-on: macos-11
runs-on: macos-12
steps:
- uses: actions/checkout@master
with:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
echo "krb_ver=${krb_ver}" >> $GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v0.1.8
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.build.outputs.asset_path }}
name: Karbo CLI Suite ${{ steps.build.outputs.krb_ver }}
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
echo "krb_ver=${krb_ver}" >> $GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v0.1.8
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.build.outputs.asset_path }}
name: Karbo CLI Suite ${{ steps.build.outputs.krb_ver }}
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
echo "krb_ver=${krb_ver}" >> $GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v0.1.8
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.build.outputs.asset_path }}
name: Karbo CLI Suite ${{ steps.build.outputs.krb_ver }}
Expand Down

0 comments on commit a25fab4

Please sign in to comment.