Skip to content

Commit b79f72f

Browse files
Update dependencies (#63)
1 parent e13cbc9 commit b79f72f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ jobs:
1515
tests:
1616
name: Build and Test
1717
runs-on: macos-14
18+
environment: CI
1819
steps:
1920
- uses: actions/checkout@v3
20-
- name: Select Xcode
21+
- name: Set Up CI
2122
run: .github/workflows/xcode_select.sh
23+
env:
24+
BUILDBUDDY_API_KEY: ${{ secrets.BUILDBUDDY_API_KEY }}
2225
- name: Lint
2326
run: bazelisk run :lint && git diff --exit-code
2427
- name: Build and Test

.github/workflows/xcode_select.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ echo "Generating bazelrc"
1212
# Enable remote cache for all Github Action builds
1313
echo "build --config=remote_cache" > user.bazelrc
1414
echo "build --config=ci" >> user.bazelrc
15+
echo "build --remote_header=x-buildbuddy-api-key=$BUILDBUDDY_API_KEY" >> user.bazelrc

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bazel_dep(name = "bazel_skylib", version = "1.4.2")
2-
bazel_dep(name = "rules_xcodeproj", version = "2.8.1")
2+
bazel_dep(name = "rules_xcodeproj", version = "2.9.1")
33
bazel_dep(
44
name = "apple_support",
55
version = "1.17.0",
@@ -12,7 +12,7 @@ bazel_dep(
1212
)
1313
bazel_dep(
1414
name = "rules_apple",
15-
version = "3.12.0",
15+
version = "3.13.0",
1616
repo_name = "build_bazel_rules_apple",
1717
)
1818

0 commit comments

Comments
 (0)