Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI versioning #237

Merged
merged 1 commit into from
Mar 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

- name: Cache Toolchain Directory
id: cache-toolchain
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: tools
key: ${{ runner.os }}-toolchain-v0.1
Expand All @@ -36,7 +36,7 @@ jobs:

- name: Cache Third Party Directory
id: cache-thirdparty
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: third_party
key: ${{ runner.os }}-thirdparty-v0.1
Expand Down Expand Up @@ -71,15 +71,15 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Dependencies
run: |
sudo bash ./ci/install_dependencies.sh

- name: Cache Toolchain Directory
id: cache-toolchain
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: tools
key: ${{ runner.os }}-toolchain-v0.1
Expand All @@ -88,7 +88,7 @@ jobs:

- name: Cache Third Party Directory
id: cache-thirdparty
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: third_party
key: ${{ runner.os }}-thirdparty-v0.1
Expand Down Expand Up @@ -122,15 +122,15 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Dependencies
run: |
sudo bash ./ci/install_dependencies.sh

- name: Cache Toolchain Directory
id: cache-toolchain
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: tools
key: ${{ runner.os }}-toolchain-v0.1
Expand All @@ -139,7 +139,7 @@ jobs:

- name: Cache Third Party Directory
id: cache-thirdparty
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: third_party
key: ${{ runner.os }}-thirdparty-v0.1
Expand Down
Loading