Skip to content

Commit

Permalink
chore: upgrade actions
Browse files Browse the repository at this point in the history
  • Loading branch information
akiver committed Feb 8, 2024
1 parent 3756a68 commit b85deb2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cmake --build . --config Release
mkdir tmp && cp -r bin tmp && rm -rf bin && mv tmp bin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: windows-x64
path: bin
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
cmake --build . --config Release
mkdir tmp && cp -r bin tmp && rm -rf bin && mv tmp bin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: macos-arm64
path: bin
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
cmake --build . --config Release
mkdir tmp && cp -r bin tmp && rm -rf bin && mv tmp bin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: macos-x64
path: bin
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
cmake --build . --config Release
mkdir tmp && cp -r bin tmp && rm -rf bin && mv tmp bin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: linux-x64
path: bin
Expand All @@ -168,12 +168,12 @@ jobs:
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Create new version
run: |
Expand Down

0 comments on commit b85deb2

Please sign in to comment.