Skip to content

Commit

Permalink
Merge pull request #13 from NFIBrokerage/bump-github-action-versions
Browse files Browse the repository at this point in the history
Bump github action versions
  • Loading branch information
svrdlans committed Mar 15, 2024
2 parents 4c5a825 + e9f1e8e commit df17883
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

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

- name: Restore the deps cache
uses: actions/cache@v1
uses: actions/cache@v4
id: deps-cache
with:
path: deps
Expand All @@ -43,7 +43,7 @@ jobs:
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
- name: Restore the _build cache
uses: actions/cache@v1
uses: actions/cache@v4
id: build-cache
with:
path: _build
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

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

- name: Restore the deps cache
uses: actions/cache@v1
uses: actions/cache@v4
id: deps-cache
with:
path: deps
Expand All @@ -109,7 +109,7 @@ jobs:
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
- name: Restore the _build cache
uses: actions/cache@v1
uses: actions/cache@v4
id: build-cache
with:
path: _build
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:

- name: Create a GitHub Release
id: create_release
uses: NFIBrokerage/create-release@v2
uses: NFIBrokerage/create-release@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/refresh-dev-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

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

- name: Restore the deps cache
uses: actions/cache@v1
uses: actions/cache@v4
id: deps-cache
with:
path: deps
Expand All @@ -62,7 +62,7 @@ jobs:
${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-deps-
- name: Restore the _build cache
uses: actions/cache@v1
uses: actions/cache@v4
id: build-cache
with:
path: _build
Expand Down

0 comments on commit df17883

Please sign in to comment.