Skip to content

Commit 8c000e4

Browse files
authored
Upgrade deprecated github action (#6009)
1 parent f9925c6 commit 8c000e4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.build.prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
DOCKER_REPOSITORY: ${{ secrets.DOCKER_REPOSITORY }}
1414
DOCKER_BUILD_ENABLED: ${{ secrets.DOCKER_BUILD_ENABLED }}
1515
DOCKER_BUILD_ALTERNATE_ENABLED: ${{ secrets.DOCKER_BUILD_ALTERNATE_ENABLED }}
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout
1919
if: contains(env.DOCKER_BUILD_ENABLED, 'true')
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Cache Docker layers
2727
if: contains(env.DOCKER_BUILD_ENABLED, 'true')
28-
uses: actions/cache@v2
28+
uses: actions/cache@v4
2929
with:
3030
path: /tmp/.buildx-cache
3131
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/ci.build.push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
DOCKER_REPOSITORY: ${{ secrets.DOCKER_REPOSITORY }}
1515
DOCKER_BUILD_ENABLED: ${{ secrets.DOCKER_BUILD_ENABLED }}
1616
DOCKER_BUILD_ALTERNATE_ENABLED: ${{ secrets.DOCKER_BUILD_ALTERNATE_ENABLED }}
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-24.04
1818
steps:
1919
- name: Checkout
2020
if: contains(env.DOCKER_BUILD_ENABLED, 'true')
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Cache Docker layers
2828
if: contains(env.DOCKER_BUILD_ENABLED, 'true')
29-
uses: actions/cache@v2
29+
uses: actions/cache@v4
3030
with:
3131
path: /tmp/.buildx-cache
3232
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/ci.build.release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Cache Docker layers
2727
if: contains(env.DOCKER_BUILD_ENABLED, 'true')
28-
uses: actions/cache@v2
28+
uses: actions/cache@v4
2929
with:
3030
path: /tmp/.buildx-cache
3131
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: sudo apt-get install -y imagemagick
4242

4343
- name: Bundle cache
44-
uses: actions/cache@v2
44+
uses: actions/cache@v4
4545
with:
4646
path: vendor/bundle
4747
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

0 commit comments

Comments
 (0)