Skip to content

Commit

Permalink
Merge pull request #350 from na2na-p/renovate/actions-cache-4.x
Browse files Browse the repository at this point in the history
Update actions/cache action to v4
  • Loading branch information
2na2-p[bot] authored Jan 18, 2024
2 parents a717782 + 05eac4e commit 6a1cb24
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/actions/prepare-docker-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
echo "WWWGROUP=$(id -g)" >> $GITHUB_ENV
echo "WWWGROUP=$(id -g)" >> $GITHUB_OUTPUT
- name: Cache Docker Registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/docker-registry
key: docker-registry-${{ github.ref }}-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-for-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y nasm
- name: Cache asdf
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.asdf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-for-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: asdf-vm/actions/setup@v3.0.2
continue-on-error: true
- name: Cache asdf
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.asdf
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: asdf-vm/actions/setup@v3.0.2
continue-on-error: true
- name: Cache asdf
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.asdf
Expand All @@ -34,7 +34,7 @@ jobs:
uses: asdf-vm/actions/setup@v3.0.2
continue-on-error: true
- name: Cache asdf
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.asdf
Expand All @@ -56,7 +56,7 @@ jobs:
uses: asdf-vm/actions/setup@v3.0.2
continue-on-error: true
- name: Cache asdf
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.asdf
Expand All @@ -80,7 +80,7 @@ jobs:
uses: asdf-vm/actions/setup@v3.0.2
continue-on-error: true
- name: Cache asdf
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.asdf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Cache Docker Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: docker-build-cache-${{ github.ref }}-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Docker Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: docker-build-cache-${{ github.ref }}-${{ github.sha }}
Expand All @@ -38,7 +38,7 @@ jobs:
echo TAG $TAG
echo "docker_image_tag_ci=$TAG" >> $GITHUB_OUTPUT
- name: Cache Docker Registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/docker-registry
key: docker-registry-${{ github.ref }}-${{ github.sha }}
Expand Down

0 comments on commit 6a1cb24

Please sign in to comment.