Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/release_github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test_bazel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Cache Setup
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-bazel
with:
path: ~/.cache/bazel
Expand All @@ -29,7 +29,7 @@ jobs:
run: bazel --version

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Build
run: bazel build --disk_cache ~/.cache/bazel //...
Expand All @@ -38,7 +38,7 @@ jobs:
run: bazel test --disk_cache ~/.cache/bazel --test_timeout 10 //...

- name: Upload Test Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: failure()
with:
name: Test Results (${{ matrix.platform }})
Expand All @@ -60,7 +60,7 @@ jobs:
with:
bazel-version: "5.4.1"
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Prepare
run: touch WORKSPACE
- name: Test
Expand All @@ -77,7 +77,7 @@ jobs:

steps:
- name: Cache Setup
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-bazel
with:
path: ~/.cache/bazel
Expand All @@ -89,7 +89,7 @@ jobs:
bazel-version: latest

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Build
run: >
Expand Down
Loading