Skip to content

Commit aa24131

Browse files
authored
Merge pull request #19 from benchsci/Update-packages
Update packages
2 parents 8b5c75b + a0f872a commit aa24131

11 files changed

Lines changed: 2205 additions & 1104 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,14 @@ jobs:
1919
# Steps represent a sequence of tasks that will be executed as part of the job
2020
steps:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Mount bazel caches
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: |
2727
"~/.cache/bazel"
2828
"~/.cache/bazel-repo"
2929
key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE', '**/*.js') }}
3030
restore-keys: bazel-cache-
3131
- name: bazel test //...
32-
env:
33-
# Bazelisk will download bazel to here
34-
XDG_CACHE_HOME: ~/.cache/bazel-repo
3532
run: bazel test //...

MODULE.bazel

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,13 @@ module(
44
compatibility_level = 1,
55
)
66

7-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
7+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
88
bazel_dep(name = "rules_python", version = "0.31.0")
9-
bazel_dep(name = "rules_go", version = "0.50.1", repo_name = "io_bazel_rules_go")
10-
bazel_dep(name = "gazelle", version = "0.40.0", repo_name = "bazel_gazelle")
9+
bazel_dep(name = "rules_go", version = "0.60.0", repo_name = "io_bazel_rules_go")
10+
bazel_dep(name = "gazelle", version = "0.47.0", repo_name = "bazel_gazelle")
1111

1212
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1313

14-
http_archive(
15-
name = "com_github_smacker_go_tree_sitter",
16-
integrity = "sha256-ydsF+Evl9CwcTac21N4CV1Nje8GUpXU35YXDfqFliV0=",
17-
patch_args = ["-p1"],
18-
patches = [
19-
"//patches:go-tree-sitter.diff",
20-
],
21-
strip_prefix = "go-tree-sitter-dd81d9e9be82a8cac96ed1d50c7389c5f1997c02",
22-
urls = ["https://github.com/smacker/go-tree-sitter/archive/dd81d9e9be82a8cac96ed1d50c7389c5f1997c02.tar.gz"],
23-
)
24-
2514
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
2615
go_deps.from_file(go_mod = "//:go.mod")
2716
use_repo(
@@ -30,6 +19,7 @@ use_repo(
3019
"com_github_bmatcuk_doublestar_v4",
3120
"com_github_emirpasic_gods",
3221
"com_github_ghodss_yaml",
22+
"com_github_smacker_go_tree_sitter",
3323
"com_github_stretchr_testify",
3424
"in_gopkg_yaml_v2",
3525
"org_golang_x_sync",

0 commit comments

Comments
 (0)