Skip to content

Commit 1f151b5

Browse files
authored
Merge pull request #57 from UncleGrumpy/build_updates
Update workflows to use current actions/cache@v4
2 parents 23dc3e2 + 1850eab commit 1f151b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3232
- uses: actions/checkout@v3
3333

34-
- uses: actions/cache@v1
34+
- uses: actions/cache@v4
3535
id: gem-cache
3636
with:
3737
path: /home/runner/.local/share/gem
@@ -41,7 +41,7 @@ jobs:
4141
if: steps.cache.outputs.gem-cache-hit != 'true'
4242
run: gem install bundler --user-install
4343

44-
- uses: actions/cache@v1
44+
- uses: actions/cache@v4
4545
id: bundler-cache
4646
with:
4747
path: /home/runner/.local/vendor/bundle

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2929
- uses: actions/checkout@v3
3030

31-
- uses: actions/cache@v1
31+
- uses: actions/cache@v4
3232
id: gem-cache
3333
with:
3434
path: /home/runner/.local/share/gem
@@ -38,7 +38,7 @@ jobs:
3838
if: steps.cache.outputs.gem-cache-hit != 'true'
3939
run: gem install bundler --user-install
4040

41-
- uses: actions/cache@v1
41+
- uses: actions/cache@v4
4242
id: bundler-cache
4343
with:
4444
path: /home/runner/.local/vendor/bundle

0 commit comments

Comments
 (0)