Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsiomb committed May 22, 2024
1 parent 251cf54 commit 4ee37e2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: FreeBSD build
uses: vmactions/freebsd-vm@v1
Expand All @@ -24,7 +24,7 @@ jobs:
gmake
gmake DESTDIR=spacenavd-freebsd install
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: spacenavd-freebsd
path: spacenavd-freebsd
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_gnulinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install dependencies
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
- name: stage install
run: DESTDIR=spacenavd-gnulinux make install

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: spacenavd-gnulinux
path: spacenavd-gnulinux
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: configure
run: ./configure --disable-x11
Expand All @@ -48,7 +48,7 @@ jobs:
- name: stage install
run: DESTDIR=spacenavd-gnulinux-nox11 make install

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: spacenavd-gnulinux-nox11
path: spacenavd-gnulinux-nox11
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install dependencies
run: |
Expand All @@ -26,7 +26,7 @@ jobs:
- name: stage install
run: DESTDIR=spacenavd-macosx make install

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: spacenavd-macosx
path: spacenavd-macosx
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: configure
run: ./configure --disable-x11
Expand All @@ -47,7 +47,7 @@ jobs:
- name: stage install
run: DESTDIR=spacenavd-macosx-nox11 make install

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: spacenavd-macosx-nox11
path: spacenavd-macosx-nox11
Expand Down

0 comments on commit 4ee37e2

Please sign in to comment.