Skip to content

Commit 8e32cc8

Browse files
GH Actions: Removed Ubuntu 18.04 and Updated to v4 workflows (#23)
1 parent 78e8da3 commit 8e32cc8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020

2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
submodules: 'true'
2525
fetch-depth: 0

.github/workflows/build-ubuntu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
library_type: [static, shared]
19-
os: [ubuntu-22.04, ubuntu-20.04, ubuntu-18.04]
19+
os: [ubuntu-22.04, ubuntu-20.04]
2020

2121
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
2222
# You can convert this to a matrix build if you need cross-platform coverage.
@@ -64,7 +64,7 @@ jobs:
6464
shell: bash
6565

6666
- name: Checkout
67-
uses: actions/checkout@v3
67+
uses: actions/checkout@v4
6868
with:
6969
submodules: 'true'
7070
fetch-depth: 0
@@ -104,7 +104,7 @@ jobs:
104104
working-directory: ${{github.workspace}}/_build/_package/
105105

106106
- name: Upload binaries
107-
uses: actions/upload-artifact@v3
107+
uses: actions/upload-artifact@v4
108108
with:
109109
name: ${{ env.PROJECT_NAME }}-${{ env.CMAKE_PROJECT_VERSION }}-${{ matrix.os }}-${{ env.package_postfix }}
110110
path: ${{github.workspace}}/_build/_package/*.deb

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
}
4242
4343
- name: Checkout
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
with:
4646
submodules: 'true'
4747
fetch-depth: 0
@@ -81,7 +81,7 @@ jobs:
8181
echo "CMAKE_PROJECT_VERSION=$cmake_project_version" >> "$Env:GITHUB_ENV"
8282
8383
- name: Upload binaries
84-
uses: actions/upload-artifact@v3
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: ${{ env.PROJECT_NAME }}-${{ env.CMAKE_PROJECT_VERSION }}-windows-${{ matrix.build_arch }}-${{ env.VS_NAME }}-${{ matrix.library_type }}
8787
path: ${{github.workspace}}/${{env.INSTALL_PREFIX}}

0 commit comments

Comments
 (0)