Skip to content

Commit df17883

Browse files
authored
Merge pull request #13 from NFIBrokerage/bump-github-action-versions
Bump github action versions
2 parents 4c5a825 + e9f1e8e commit df17883

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
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020

2121
- name: Stand up docker-compose services
2222
run: docker-compose up -d
@@ -34,7 +34,7 @@ jobs:
3434
otp-version: ${{ env.OTP_VERSION }}
3535

3636
- name: Restore the deps cache
37-
uses: actions/cache@v1
37+
uses: actions/cache@v4
3838
id: deps-cache
3939
with:
4040
path: deps
@@ -43,7 +43,7 @@ jobs:
4343
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
4444
4545
- name: Restore the _build cache
46-
uses: actions/cache@v1
46+
uses: actions/cache@v4
4747
id: build-cache
4848
with:
4949
path: _build
@@ -85,7 +85,7 @@ jobs:
8585

8686
steps:
8787
- name: Checkout
88-
uses: actions/checkout@v2
88+
uses: actions/checkout@v4
8989

9090
- name: Determine the elixir version
9191
run: echo "ELIXIR_VERSION=$(grep -h elixir .tool-versions | awk '{ print $2 }' | awk -F - '{print $1}')" >> $GITHUB_ENV
@@ -100,7 +100,7 @@ jobs:
100100
otp-version: ${{ env.OTP_VERSION }}
101101

102102
- name: Restore the deps cache
103-
uses: actions/cache@v1
103+
uses: actions/cache@v4
104104
id: deps-cache
105105
with:
106106
path: deps
@@ -109,7 +109,7 @@ jobs:
109109
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
110110
111111
- name: Restore the _build cache
112-
uses: actions/cache@v1
112+
uses: actions/cache@v4
113113
id: build-cache
114114
with:
115115
path: _build
@@ -144,7 +144,7 @@ jobs:
144144

145145
- name: Create a GitHub Release
146146
id: create_release
147-
uses: NFIBrokerage/create-release@v2
147+
uses: NFIBrokerage/create-release@v4
148148
env:
149149
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
150150
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)