Skip to content

Commit

Permalink
refactor: Change GitHub Action version to address deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea and TeamModerne committed Dec 10, 2024
1 parent d579ca9 commit 8f448cb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nebula-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
with:
username: ${{ secrets.ORG_NETFLIXOSS_DOCKERHUB_USERNAME }}
password: ${{ secrets.ORG_NETFLIXOSS_DOCKERHUB_PASSWORD }}
- uses: actions/cache@v1
- uses: actions/cache@v4
id: gradle-cache
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
restore-keys: |
- ${{ runner.os }}-gradle-
- uses: actions/cache@v1
- uses: actions/cache@v4
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nebula-pr-functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v1
- uses: actions/cache@v4
id: gradle-cache
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
restore-keys: |
- ${{ runner.os }}-gradle-
- uses: actions/cache@v1
- uses: actions/cache@v4
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nebula-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
with:
username: ${{ secrets.ORG_NETFLIXOSS_DOCKERHUB_USERNAME }}
password: ${{ secrets.ORG_NETFLIXOSS_DOCKERHUB_PASSWORD }}
- uses: actions/cache@v1
- uses: actions/cache@v4
id: gradle-cache
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
restore-keys: |
- ${{ runner.os }}-gradle-
- uses: actions/cache@v1
- uses: actions/cache@v4
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nebula-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v1
- uses: actions/cache@v4
id: gradle-cache
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
restore-keys: |
- ${{ runner.os }}-gradle-
- uses: actions/cache@v1
- uses: actions/cache@v4
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nebula-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
with:
username: ${{ secrets.ORG_NETFLIXOSS_DOCKERHUB_USERNAME }}
password: ${{ secrets.ORG_NETFLIXOSS_DOCKERHUB_PASSWORD }}
- uses: actions/cache@v2
- uses: actions/cache@v4
id: gradle-cache
with:
path: |
~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
- uses: actions/cache@v2
- uses: actions/cache@v4
id: gradle-wrapper-cache
with:
path: |
Expand Down

0 comments on commit 8f448cb

Please sign in to comment.