Skip to content

Commit

Permalink
Migrate to latest GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSWolf committed Dec 27, 2024
1 parent 38d521b commit 16894b2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
BOOST_URL: https://sourceforge.net/projects/boost/files/boost/1.76.0/boost_1_76_0.tar.bz2/download
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true
- name: Restore Boost from cache
uses: actions/cache@v2
uses: actions/cache@v4
id: cache-boost
with:
path: ${{ env.BOOST_ROOT }}
Expand All @@ -58,7 +58,7 @@ jobs:
cmake ${{ matrix.cmakeOptions }} ..
cmake --build . --config Release --target package
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: binaries
path: build/*.zip
Expand All @@ -76,11 +76,11 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: binaries
- name: Create GitHub release draft
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
draft: true
files: "*.zip"
Expand Down

0 comments on commit 16894b2

Please sign in to comment.