File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,18 +29,18 @@ jobs:
29
29
DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common gcc git curl wget make zlib1g-dev bzip2 libbz2-dev lzma lzma-dev libreadline-dev libsqlite3-dev libssl-dev libffi-dev doxygen pandoc
30
30
git config --global --add safe.directory '*'
31
31
- name : Set up Python 3.9.4
32
- uses : actions/setup-python@v2
32
+ uses : actions/setup-python@v4
33
33
with :
34
34
python-version : 3.9.4
35
- - uses : actions/checkout@v2
35
+ - uses : actions/checkout@v3
36
36
with :
37
37
ref : ${{github.head_ref}}
38
38
- name : Get HEAD SHA
39
39
id : vars
40
- run : echo "::set-output name= sha:: $(git rev-parse --short HEAD)"
40
+ run : echo "sha= $(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
41
41
- name : Get Bazel version
42
42
id : bazel_info
43
- run : echo "::set-output name= version:: $(cat .bazelversion)"
43
+ run : echo "version= $(cat .bazelversion)" >> $GITHUB_OUTPUT
44
44
- name : Install Bazel
45
45
run : |
46
46
wget -q https://github.com/bazelbuild/bazel/releases/download/${{ steps.bazel_info.outputs.version }}/bazel-${{ steps.bazel_info.outputs.version }}-linux-x86_64 -O /usr/bin/bazel
You can’t perform that action at this time.
0 commit comments