Skip to content

Commit 24f4478

Browse files
authored
Merge pull request #25 from NFIBrokerage/bump-github-action-versions
Bump github action versions
2 parents 84f5c90 + e152635 commit 24f4478

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@v3
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@v3
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@v3
41+
uses: actions/cache@v4
4242
id: build-cache
4343
with:
4444
path: _build
@@ -81,7 +81,7 @@ jobs:
8181

8282
steps:
8383
- name: Checkout
84-
uses: actions/checkout@v3
84+
uses: actions/checkout@v4
8585

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

9898
- name: Restore the deps cache
99-
uses: actions/cache@v3
99+
uses: actions/cache@v4
100100
id: deps-cache
101101
with:
102102
path: deps
@@ -105,7 +105,7 @@ jobs:
105105
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
106106
107107
- name: Restore the _build cache
108-
uses: actions/cache@v3
108+
uses: actions/cache@v4
109109
id: build-cache
110110
with:
111111
path: _build
@@ -141,7 +141,7 @@ jobs:
141141

142142
- name: Create a GitHub Release
143143
id: create_release
144-
uses: NFIBrokerage/create-release@v3
144+
uses: NFIBrokerage/create-release@v4
145145
env:
146146
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
147147
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@v3
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@v3
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@v3
64+
uses: actions/cache@v4
6565
id: build-cache
6666
with:
6767
path: _build

0 commit comments

Comments
 (0)