File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 27
27
# Steps represent a sequence of tasks that will be executed as part of the job
28
28
steps :
29
29
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30
- - uses : actions/checkout@v2
30
+ - uses : actions/checkout@v4
31
31
32
32
- name : Setup ruby
33
33
uses : ruby/setup-ruby@v1
@@ -50,14 +50,14 @@ jobs:
50
50
51
51
# Validate
52
52
- name : Set up Python 3.x
53
- uses : actions/setup-python@v2
53
+ uses : actions/setup-python@v5
54
54
with :
55
55
# Semantic version range syntax or exact version of a Python version
56
56
python-version : ' 3.x'
57
57
# Optional - x64 or x86 architecture, defaults to x64
58
58
architecture : ' x64'
59
59
- name : Cache pip
60
- uses : actions/cache@v2
60
+ uses : actions/cache@v4
61
61
with :
62
62
# This path is specific to Ubuntu
63
63
path : ~/.cache/pip
Original file line number Diff line number Diff line change 25
25
# Steps represent a sequence of tasks that will be executed as part of the job
26
26
steps :
27
27
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28
- - uses : actions/checkout@v2
28
+ - uses : actions/checkout@v4
29
29
# store branch name in ${BRANCH_NAME}
30
30
- name : Export BRANCH_NAME # store branch name in $BRANCH_NAME
31
31
run : echo BRANCH_NAME=`git rev-parse --abbrev-ref HEAD` >> $GITHUB_ENV
@@ -48,14 +48,14 @@ jobs:
48
48
49
49
# Validate
50
50
- name : Set up Python 3.x
51
- uses : actions/setup-python@v2
51
+ uses : actions/setup-python@v5
52
52
with :
53
53
# Semantic version range syntax or exact version of a Python version
54
54
python-version : ' 3.x'
55
55
# Optional - x64 or x86 architecture, defaults to x64
56
56
architecture : ' x64'
57
57
- name : Cache pip
58
- uses : actions/cache@v2
58
+ uses : actions/cache@v4
59
59
with :
60
60
# This path is specific to Ubuntu
61
61
path : ~/.cache/pip
You can’t perform that action at this time.
0 commit comments