Skip to content

Commit

Permalink
Merge pull request #4362 from PascalEgn/bump-cache-action
Browse files Browse the repository at this point in the history
gh-actions: bump cache and checkout action
  • Loading branch information
PascalEgn authored Jan 8, 2025
2 parents 7292121 + d243327 commit 51e5625
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/backend-tests-on-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4.2.2
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
- name: Cache docker image
uses: actions/cache@v2.1.3
uses: actions/cache@v4.2.0
id: cache
with:
path: /tmp/docker-images
Expand All @@ -45,12 +45,12 @@ jobs:
needs: Build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.2.2
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
- name: Cache docker image
uses: actions/cache@v2.1.3
uses: actions/cache@v4.2.0
id: cache
with:
path: /tmp/docker-images
Expand Down Expand Up @@ -81,12 +81,12 @@ jobs:
needs: Build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.2.2
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
- name: Cache docker image
uses: actions/cache@v2.1.3
uses: actions/cache@v4.2.0
id: cache
with:
path: /tmp/docker-images
Expand Down Expand Up @@ -119,12 +119,12 @@ jobs:
needs: Build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.2.2
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
- name: Cache docker image
uses: actions/cache@v2.1.3
uses: actions/cache@v4.2.0
id: cache
with:
path: /tmp/docker-images
Expand All @@ -144,12 +144,12 @@ jobs:
needs: Build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.2.2
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
- name: Cache docker image
uses: actions/cache@v2.1.3
uses: actions/cache@v4.2.0
id: cache
with:
path: /tmp/docker-images
Expand All @@ -169,12 +169,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.2.2
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
- name: Cache docker image
uses: actions/cache@v2.1.3
uses: actions/cache@v4.2.0
id: cache
with:
path: /tmp/docker-images
Expand All @@ -193,7 +193,7 @@ jobs:
tag: ${{ steps.set-env.outputs.tag }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.2.2
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
Expand Down

0 comments on commit 51e5625

Please sign in to comment.