Skip to content

Commit d2c6865

Browse files
committed
Handle Node.js 16 deprecation warning
1 parent 9e3f1f8 commit d2c6865

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828

2929
- name: Determine the elixir version
3030
run: echo "ELIXIR_VERSION=$(grep -h elixir .tool-versions | awk '{ print $2 }' | awk -F - '{print $1}')" >> $GITHUB_ENV
@@ -39,7 +39,7 @@ jobs:
3939
otp-version: ${{ env.OTP_VERSION }}
4040

4141
- name: Restore the deps cache
42-
uses: actions/cache@v1
42+
uses: actions/cache@v4
4343
id: deps-cache
4444
with:
4545
path: deps
@@ -48,7 +48,7 @@ jobs:
4848
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
4949
5050
- name: Restore the _build cache
51-
uses: actions/cache@v1
51+
uses: actions/cache@v4
5252
id: build-cache
5353
with:
5454
path: _build
@@ -90,7 +90,7 @@ jobs:
9090

9191
steps:
9292
- name: Checkout
93-
uses: actions/checkout@v2
93+
uses: actions/checkout@v4
9494

9595
- name: Determine the elixir version
9696
run: echo "ELIXIR_VERSION=$(grep -h elixir .tool-versions | awk '{ print $2 }' | awk -F - '{print $1}')" >> $GITHUB_ENV
@@ -105,7 +105,7 @@ jobs:
105105
otp-version: ${{ env.OTP_VERSION }}
106106

107107
- name: Restore the deps cache
108-
uses: actions/cache@v1
108+
uses: actions/cache@v4
109109
id: deps-cache
110110
with:
111111
path: deps
@@ -114,7 +114,7 @@ jobs:
114114
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
115115
116116
- name: Restore the _build cache
117-
uses: actions/cache@v1
117+
uses: actions/cache@v4
118118
id: build-cache
119119
with:
120120
path: _build
@@ -149,7 +149,7 @@ jobs:
149149

150150
- name: Create a GitHub Release
151151
id: create_release
152-
uses: NFIBrokerage/create-release@v2
152+
uses: NFIBrokerage/create-release@v4
153153
env:
154154
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
155155
with:

.github/workflows/refresh-dev-cache.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v2
41+
uses: actions/checkout@v4
4242

4343
- name: Determine the elixir version
4444
run: echo "ELIXIR_VERSION=$(grep -h elixir .tool-versions | awk '{ print $2 }' | awk -F - '{print $1}')" >> $GITHUB_ENV
@@ -53,7 +53,7 @@ jobs:
5353
otp-version: ${{ env.OTP_VERSION }}
5454

5555
- name: Restore the deps cache
56-
uses: actions/cache@v1
56+
uses: actions/cache@v4
5757
id: deps-cache
5858
with:
5959
path: deps
@@ -62,7 +62,7 @@ jobs:
6262
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
6363
6464
- name: Restore the _build cache
65-
uses: actions/cache@v1
65+
uses: actions/cache@v4
6666
id: build-cache
6767
with:
6868
path: _build

0 commit comments

Comments
 (0)