File tree 2 files changed +7
-2
lines changed 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11
11
# Allows you to run this workflow manually from the Actions tab
12
12
workflow_dispatch :
13
13
14
+ concurrency :
15
+ # Cancel previous actions from the same PR: https://stackoverflow.com/a/72408109
16
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
17
+ cancel-in-progress : true
18
+
14
19
jobs :
15
20
test :
16
21
# The type of runner that the job will run on
19
24
# Steps represent a sequence of tasks that will be executed as part of the job
20
25
steps :
21
26
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v4
23
28
# Cache build and external artifacts so that the next ci build is incremental.
24
29
# Because github action caches cannot be updated after a build, we need to
25
30
# store the contents of each build in a unique cache key, then fall back to loading
Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v3
16
+ uses : actions/checkout@v4
17
17
- name : Mount bazel caches
18
18
uses : actions/cache@v3
19
19
with :
You can’t perform that action at this time.
0 commit comments