Skip to content

Commit

Permalink
Update github workflows to new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bamless committed Oct 5, 2024
1 parent a33f919 commit 295d08e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: configure
Expand All @@ -24,7 +24,7 @@ jobs:
mkdir -p release/jstar
make install
- name: upload binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: jstar-x64-linux
path: build/release/jstar
4 changes: 2 additions & 2 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: configure
Expand All @@ -24,7 +24,7 @@ jobs:
mkdir -p release/jstar
make install
- name: upload binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: jstar-x64-macos
path: build/release/jstar
10 changes: 5 additions & 5 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on: [push]

jobs:
build:
runs-on: windows-2019
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: configure
Expand All @@ -16,7 +16,7 @@ jobs:
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DJSTAR_COMPUTED_GOTOS=OFF -DCMAKE_INSTALL_PREFIX=release/jstar
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v2
- name: build
run: |
cd build
Expand All @@ -27,8 +27,8 @@ jobs:
mkdir -p release/jstar
msbuild -p:Configuration=Release INSTALL.vcxproj
- name: upload binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: jstar-x64-windows
path: build/release/jstar


0 comments on commit 295d08e

Please sign in to comment.