From d60dec300a35657980babf755eff5e74aaca39e6 Mon Sep 17 00:00:00 2001 From: Jiwon Gim Date: Fri, 7 Jun 2024 09:46:34 -0600 Subject: [PATCH] update the version of git action --- .github/workflows/clang_format.yml | 2 +- .github/workflows/clang_format_non_inline.yml | 2 +- .github/workflows/docker_and_coverage.yml | 2 +- .github/workflows/gh_pages.yml | 2 +- .github/workflows/mac.yml | 6 +++--- .github/workflows/publish-package.yml | 2 +- .github/workflows/ubuntu.yml | 4 ++-- .github/workflows/windows.yml | 10 +++++----- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/clang_format.yml b/.github/workflows/clang_format.yml index be8efa214..b2e75c0f3 100644 --- a/.github/workflows/clang_format.yml +++ b/.github/workflows/clang_format.yml @@ -15,7 +15,7 @@ jobs: run: sudo apt-get update && sudo apt-get install clang-format && clang-format --version - name: Check out code, run clang format, push changes - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/clang_format_non_inline.yml b/.github/workflows/clang_format_non_inline.yml index e97b547cd..1e8d5d41e 100644 --- a/.github/workflows/clang_format_non_inline.yml +++ b/.github/workflows/clang_format_non_inline.yml @@ -16,7 +16,7 @@ jobs: run: sudo apt-get update && sudo apt-get install clang-format && clang-format --version - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/docker_and_coverage.yml b/.github/workflows/docker_and_coverage.yml index 9c466b05f..86b01975c 100644 --- a/.github/workflows/docker_and_coverage.yml +++ b/.github/workflows/docker_and_coverage.yml @@ -26,7 +26,7 @@ jobs: # - Dockerfile.mpi steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/gh_pages.yml b/.github/workflows/gh_pages.yml index 6ba4dbb78..5f55f646d 100644 --- a/.github/workflows/gh_pages.yml +++ b/.github/workflows/gh_pages.yml @@ -11,7 +11,7 @@ jobs: name: Build and deploy to gh-pages runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 lfs: true diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index e80d4dc37..006bc10a7 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -18,7 +18,7 @@ jobs: DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run Cmake run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} @@ -42,7 +42,7 @@ jobs: DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run Cmake run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} @@ -69,7 +69,7 @@ jobs: CXX: ${{ matrix.compiler.cpp }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run Cmake run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index af6e219fe..4c4c4dc2d 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index b6e1c6b2c..ae7df3353 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -17,7 +17,7 @@ jobs: CXX: g++ steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run Cmake run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} @@ -41,7 +41,7 @@ jobs: CXX: clang++ steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run Cmake run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2d9dc98a8..2b4ae4152 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -14,7 +14,7 @@ jobs: architecture: [x64] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up MinGW uses: egor-tensin/setup-mingw@v2 with: @@ -40,7 +40,7 @@ jobs: architecture: [Win32, x64] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run CMake run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} -G "Visual Studio 16 2019" -A ${{ matrix.architecture }} @@ -59,7 +59,7 @@ jobs: architecture: [Win32, x64] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run CMake run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} -G "Visual Studio 17 2022" -A ${{ matrix.architecture }} - name: Build @@ -74,7 +74,7 @@ jobs: version: [11, 12, 13, 14, 15] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Clang run: curl -fsSL -o LLVM${{ matrix.version }}.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-${{ matrix.version }}.0.0/LLVM-${{ matrix.version }}.0.0-win64.exe ; 7z x LLVM${{ matrix.version }}.exe -y -o"C:/Program Files/LLVM" - name: Run CMake @@ -91,7 +91,7 @@ jobs: architecture: [Win32, x64] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run CMake run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -G "Visual Studio 16 2019" -A ${{ matrix.architecture }} -T ClangCL - name: Build