Skip to content

Commit

Permalink
Merge Dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
g-andrade committed Feb 18, 2024
3 parents 9b01a5b + 19cddc1 + 874d0f9 commit c3fbdc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
os: ['ubuntu-20.04']
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: otp-version-to-rebar3-version
name: "Read #{OTP version => rebar3 version} map"
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
echo "build_cache_prefix_with_hash=${{env.build_cache_prefix}}-hash-${{hashFiles('rebar.lock')}}" >> "$GITHUB_ENV"
- name: Restore cached build artifacts
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: _build
key: ${{env.build_cache_prefix_with_hash}}-${{env.prev_github_run_number}}
Expand All @@ -71,7 +71,7 @@ jobs:

- name: Save build artifacts to cache
if: always()
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: _build
key: ${{env.build_cache_prefix_with_hash}}-${{github.run_number}}

0 comments on commit c3fbdc9

Please sign in to comment.