Skip to content

Commit

Permalink
upgrade GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
franckrasolo committed Oct 8, 2023
1 parent 8c8c952 commit b24debb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/checkout@v4
with:
# required by release-tag.sh to correctly identify files changed in the last commit
fetch-depth: 2
# required by release-tag.sh to allow pushing with another credentials so other workflows are triggered
persist-credentials: false
- uses: actions/setup-java@v3.10.0
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: gradle
- name: Cache Gradle packages
uses: actions/cache@v3.2.3
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.0
uses: actions/checkout@v4
- name: Grab tag name
uses: olegtarasov/[email protected]
id: tagName
- name: Setup Java
uses: actions/setup-java@v3.10.0
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
Expand Down

0 comments on commit b24debb

Please sign in to comment.