Skip to content

Commit

Permalink
[GitHub] Bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanel committed Apr 17, 2024
1 parent 76b5b6f commit 6ee692e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- "include"
- "test"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.11.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Build on MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
Expand All @@ -20,4 +20,4 @@ jobs:
- name: build
run: cmake --build build --parallel 2
- name: test
run: cd build && ctest -j 2 --output-on-failure
run: cd build && ctest -j 2 --output-on-failure
12 changes: 6 additions & 6 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
compiler: [g++-7, g++-9, g++-11]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install compiler
run: |
echo "deb http://dk.archive.ubuntu.com/ubuntu/ focal main universe" | sudo tee -a /etc/apt/sources.list
Expand All @@ -32,7 +32,7 @@ jobs:
matrix:
compiler: [g++-8, g++-10, g++-12]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install compiler
run: |
echo "deb http://dk.archive.ubuntu.com/ubuntu/ focal main universe" | sudo tee -a /etc/apt/sources.list
Expand All @@ -51,7 +51,7 @@ jobs:
matrix:
compiler: ["15", "17"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install compiler
run: |
wget https://apt.llvm.org/llvm.sh
Expand All @@ -70,7 +70,7 @@ jobs:
matrix:
compiler: ["16"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install compiler
run: |
wget https://apt.llvm.org/llvm.sh
Expand All @@ -90,7 +90,7 @@ jobs:
standard: [11, 14, 17, 20]
compiler: [g++-11]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install compiler
run: |
sudo apt-get update
Expand All @@ -105,7 +105,7 @@ jobs:
ci_nonstandard_features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: cmake
run: cmake -S . -B build -DCMAKE_CXX_COMPILER=g++ -DAMC_PEDANTIC=ON -DCMAKE_BUILD_TYPE=Debug
- name: build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
architecture: [Win32, x64]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: cmake
run: cmake -S . -B build -A ${{ matrix.architecture }}
if: matrix.build_type == 'Release'
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: cmake
run: cmake -S . -B build -DCMAKE_CXX_FLAGS="/permissive- /std:c++latest /utf-8 /W4"
- name: build
Expand All @@ -46,7 +46,7 @@ jobs:
architecture: [Win32, x64]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: cmake
run: cmake -S . -B build -A ${{ matrix.architecture }} -T ClangCL
- name: build
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required (VERSION 3.14)

project(amc
VERSION 2.5.1
VERSION 2.6.0.0
DESCRIPTION "Header base library of C++ containers"
LANGUAGES CXX
)
Expand Down

0 comments on commit 6ee692e

Please sign in to comment.