Skip to content

Commit

Permalink
Merge pull request #323 from tetengo/github_actions
Browse files Browse the repository at this point in the history
Update the actions/checkout version #322
  • Loading branch information
kaorut committed Jun 5, 2024
2 parents d27329b + b2f6dde commit 9c79d36
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 57 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/linux-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
fi
- name: Cache Doxygen build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .doxygen_build
key: Linux-Clang-Doxygen-${{ env.DOXYGEN_VER }}-${{ env.DOXYGEN_CACHE_REV }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
clang-14
- name: Cache Boost build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .boost_build
key: Linux-Clang-Boost-${{ env.BOOST_VER }}-${{ env.BOOST_CACHE_REV }}
Expand Down Expand Up @@ -113,12 +113,12 @@ jobs:
iwyu
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Restore Doxygen build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .doxygen_build
key: Linux-Clang-Doxygen-${{ env.DOXYGEN_VER }}-${{ env.DOXYGEN_CACHE_REV }}
Expand All @@ -142,7 +142,7 @@ jobs:
../configure $DISTCHECK_CONFIGURE_FLAGS
- name: Cache documents
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .doxygen/doc
key: Linux-Clang-documents-${{ github.run_number }}
Expand Down Expand Up @@ -171,12 +171,12 @@ jobs:
iwyu
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Restore Boost build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .boost_build
key: Linux-Clang-Boost-${{ env.BOOST_VER }}-${{ env.BOOST_CACHE_REV }}
Expand Down Expand Up @@ -223,12 +223,12 @@ jobs:
iwyu
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Restore Boost build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .boost_build
key: Linux-Clang-Boost-${{ env.BOOST_VER }}-${{ env.BOOST_CACHE_REV }}
Expand All @@ -252,7 +252,7 @@ jobs:
../configure $DISTCHECK_CONFIGURE_FLAGS
- name: Cache archives
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .build/tetengo-*
key: Linux-Clang-archives-${{ github.run_number }}
Expand All @@ -276,13 +276,13 @@ jobs:
needs: [ doxygen, build ]
steps:
- name: Restore documents
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .doxygen/doc
key: Linux-Clang-documents-${{ github.run_number }}

- name: Restore archives
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .build/tetengo-*
key: Linux-Clang-archives-${{ github.run_number }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
g++-12
- name: Cache Boost build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .boost_build
key: Linux-GCC-Boost-${{ env.BOOST_VER }}-${{ env.BOOST_CACHE_REV }}
Expand Down Expand Up @@ -71,12 +71,12 @@ jobs:
g++-12
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Restore Boost build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .boost_build
key: Linux-GCC-Boost-${{ env.BOOST_VER }}-${{ env.BOOST_CACHE_REV }}
Expand Down
Loading

0 comments on commit 9c79d36

Please sign in to comment.