Skip to content

Commit

Permalink
github actions: upgrade checkout and cache to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
DankRank committed Mar 9, 2023
1 parent 2f5ac03 commit 5ba2cb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
compiler: [gcc, clang]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure CMake
Expand All @@ -32,12 +32,12 @@ jobs:
arch: [x64, x86]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Cache winflexbison
id: cache-winflexbison
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: win_flex_bison-${{env.FLEXBISON_VER}}.zip
key: winflexbison-${{env.FLEXBISON_VER}}
Expand Down

0 comments on commit 5ba2cb6

Please sign in to comment.