24
24
25
25
steps :
26
26
- name : Checkout
27
- uses : actions/checkout@v2
27
+ uses : actions/checkout@v4
28
28
29
29
- name : Determine the elixir version
30
30
run : echo "ELIXIR_VERSION=$(grep -h elixir .tool-versions | awk '{ print $2 }' | awk -F - '{print $1}')" >> $GITHUB_ENV
39
39
otp-version : ${{ env.OTP_VERSION }}
40
40
41
41
- name : Restore the deps cache
42
- uses : actions/cache@v1
42
+ uses : actions/cache@v4
43
43
id : deps-cache
44
44
with :
45
45
path : deps
48
48
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
49
49
50
50
- name : Restore the _build cache
51
- uses : actions/cache@v1
51
+ uses : actions/cache@v4
52
52
id : build-cache
53
53
with :
54
54
path : _build
90
90
91
91
steps :
92
92
- name : Checkout
93
- uses : actions/checkout@v2
93
+ uses : actions/checkout@v4
94
94
95
95
- name : Determine the elixir version
96
96
run : echo "ELIXIR_VERSION=$(grep -h elixir .tool-versions | awk '{ print $2 }' | awk -F - '{print $1}')" >> $GITHUB_ENV
@@ -105,7 +105,7 @@ jobs:
105
105
otp-version : ${{ env.OTP_VERSION }}
106
106
107
107
- name : Restore the deps cache
108
- uses : actions/cache@v1
108
+ uses : actions/cache@v4
109
109
id : deps-cache
110
110
with :
111
111
path : deps
@@ -114,7 +114,7 @@ jobs:
114
114
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
115
115
116
116
- name : Restore the _build cache
117
- uses : actions/cache@v1
117
+ uses : actions/cache@v4
118
118
id : build-cache
119
119
with :
120
120
path : _build
@@ -149,7 +149,7 @@ jobs:
149
149
150
150
- name : Create a GitHub Release
151
151
id : create_release
152
- uses : NFIBrokerage/create-release@v2
152
+ uses : NFIBrokerage/create-release@v4
153
153
env :
154
154
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
155
155
with :
0 commit comments