Skip to content

Commit 53cc399

Browse files
authoredMar 18, 2024··
Handle Node.js 16 deprecation warning (#8)
1 parent e0a085e commit 53cc399

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
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

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

3131
- name: Restore the deps cache
32-
uses: actions/cache@v1
32+
uses: actions/cache@v4
3333
id: deps-cache
3434
with:
3535
path: deps
@@ -38,7 +38,7 @@ jobs:
3838
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
3939
4040
- name: Restore the _build cache
41-
uses: actions/cache@v1
41+
uses: actions/cache@v4
4242
id: build-cache
4343
with:
4444
path: _build
@@ -80,7 +80,7 @@ jobs:
8080

8181
steps:
8282
- name: Checkout
83-
uses: actions/checkout@v2
83+
uses: actions/checkout@v4
8484

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

9797
- name: Restore the deps cache
98-
uses: actions/cache@v1
98+
uses: actions/cache@v4
9999
id: deps-cache
100100
with:
101101
path: deps
@@ -104,7 +104,7 @@ jobs:
104104
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
105105
106106
- name: Restore the _build cache
107-
uses: actions/cache@v1
107+
uses: actions/cache@v4
108108
id: build-cache
109109
with:
110110
path: _build
@@ -139,7 +139,7 @@ jobs:
139139

140140
- name: Create a GitHub Release
141141
id: create_release
142-
uses: NFIBrokerage/create-release@v2
142+
uses: NFIBrokerage/create-release@v4
143143
env:
144144
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
145145
with:

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v4
4141

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

5454
- name: Restore the deps cache
55-
uses: actions/cache@v1
55+
uses: actions/cache@v4
5656
id: deps-cache
5757
with:
5858
path: deps
@@ -61,7 +61,7 @@ jobs:
6161
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
6262
6363
- name: Restore the _build cache
64-
uses: actions/cache@v1
64+
uses: actions/cache@v4
6565
id: build-cache
6666
with:
6767
path: _build

0 commit comments

Comments
 (0)
Please sign in to comment.