Skip to content

Commit

Permalink
Bump CI actions to their latest version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ned14 committed Sep 4, 2024
1 parent 92dd7a5 commit 816ff18
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout Documentation
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/installability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Set up Python
uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: 'Wait for status checks'
id: waitforstatuschecks
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/programs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3

- name: Force cmake version to older than runner's
uses: jwlawson/[email protected]
with:
cmake-version: '3.22.2'
- uses: actions/checkout@v4

- name: Build
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unittests_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
CXX: ${{ matrix.compiler }}

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

- name: CMake tests Linux
shell: bash
Expand All @@ -47,14 +47,14 @@ jobs:
fi
- name: Upload Prebuilt Binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Linux ${{ matrix.configuration }} ${{ matrix.compiler }} prebuilt binaries
path: llfio-v2.0-binaries-linux-*.tgz

- name: Upload Test Results
if: ${{ matrix.compiler != 'arm-linux-gnueabihf-g++' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Linux ${{ matrix.configuration }} ${{ matrix.compiler }} test results
path: prebuilt/merged_junit_results.xml
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unittests_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
NAME: MacOS-${{ matrix.configuration }}

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

- name: CMake tests Mac OS
shell: bash
Expand All @@ -32,14 +32,14 @@ jobs:
ctest -S .ci.cmake -VV -E noexcept --timeout 900 "-DCTEST_CONFIGURE_OPTIONS=$CMAKE_CONFIGURE_OPTIONS"
- name: Upload Prebuilt Binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Mac OS ${{ matrix.configuration }} prebuilt binaries
path: llfio-v2.0-binaries-darwin-arm64.tgz

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Mac OS ${{ matrix.configuration }} test results
path: prebuilt/merged_junit_results.xml
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unittests_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.image }}

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

- name: Set name
id: vars
Expand Down Expand Up @@ -48,14 +48,14 @@ jobs:
ctest -S .ci.cmake -VV --timeout 900 "-DCTEST_CONFIGURE_OPTIONS=$CMAKE_CONFIGURE_OPTIONS" -DCTEST_SITE=$NAME -DCTEST_CMAKE_GENERATOR="${{ steps.vars.outputs.GENERATOR }}"
- name: Upload Prebuilt Binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Windows ${{ steps.vars.outputs.NAME }} ${{ matrix.configuration }} prebuilt binaries
path: llfio-v2.0-binaries-win64.zip

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Windows ${{ steps.vars.outputs.NAME }} ${{ matrix.configuration }} test results
path: prebuilt/merged_junit_results.xml
Expand Down
6 changes: 3 additions & 3 deletions include/llfio/revision.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Note the second line of this file must ALWAYS be the git SHA, third line ALWAYS the git SHA update time
#define LLFIO_PREVIOUS_COMMIT_REF c9e6f6c8accb5ce8a36607191955ad59e5cba099
#define LLFIO_PREVIOUS_COMMIT_DATE "2024-08-29 11:02:08 +00:00"
#define LLFIO_PREVIOUS_COMMIT_UNIQUE c9e6f6c8
#define LLFIO_PREVIOUS_COMMIT_REF 92dd7a5272f8dd3e027563f9019cdc6ae3ca3fc0
#define LLFIO_PREVIOUS_COMMIT_DATE "2024-09-04 11:37:40 +00:00"
#define LLFIO_PREVIOUS_COMMIT_UNIQUE 92dd7a52

0 comments on commit 816ff18

Please sign in to comment.