Skip to content

Commit 450fe9b

Browse files
Update all dependencies (#83)
1 parent e9d2ff1 commit 450fe9b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# This is where bazelisk caches its downloads of Bazel.
1818
BAZELISK_HOME: /home/runner/.cache/bazel_ci/bazelisk
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Install Ubuntu dependencies
2222
run: .github/ci_setup.bash
2323
# Restore the most appropriate caches.
@@ -46,7 +46,7 @@ jobs:
4646
# * For subsequent builds of a PR, the first restore key, e.g.,
4747
# "bazel_ci-refs/pull/###/merge-" should match the most recently saved
4848
# PR key "bazel_ci-refs/pull/###/merge-####-#".
49-
- uses: actions/cache/restore@v3
49+
- uses: actions/cache/restore@v4
5050
with:
5151
path: ~/.cache/bazel_ci
5252
key: bazel_ci-${{ github.ref }}-${{ github.run_number }}-${{ github.run_attempt }}
@@ -65,7 +65,7 @@ jobs:
6565
# By default, actions/cache only saves after a successful workflow, but
6666
# our caches are bags of files where we only ever add new files (not change
6767
# an existing files), so it's always safe to snapshot.
68-
- uses: actions/cache/save@v3
68+
- uses: actions/cache/save@v4
6969
if: always()
7070
with:
7171
path: ~/.cache/bazel_ci

MODULE.bazel

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: BSD-3-Clause
22

3-
bazel_dep(name = "bazel_skylib", version = "1.5.0")
4-
bazel_dep(name = "rules_python", version = "0.31.0")
3+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
4+
bazel_dep(name = "rules_python", version = "1.1.0")
55

66
http_archive = use_repo_rule(
77
"@bazel_tools//tools/build_defs/repo:http.bzl",

0 commit comments

Comments
 (0)