Update github action versions (#27692)
Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
parent
6cc66109d5
commit
2672b362c9
7 changed files with 11 additions and 11 deletions
|
@ -10,7 +10,7 @@ runs:
|
|||
run: |
|
||||
echo "version=$(mvn help:evaluate -Dexpression=pnpm.version -q -DforceStdout)" >> $GITHUB_OUTPUT
|
||||
|
||||
- uses: actions/cache@v3
|
||||
- uses: actions/cache@v4
|
||||
name: Cache PNPM store
|
||||
with:
|
||||
# See: https://pnpm.io/npmrc#store-dir
|
||||
|
|
4
.github/actions/install-chrome/action.yml
vendored
4
.github/actions/install-chrome/action.yml
vendored
|
@ -6,14 +6,14 @@ runs:
|
|||
steps:
|
||||
- id: cache-chrome-browser
|
||||
name: Chrome browser cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ./chrome
|
||||
key: chrome
|
||||
|
||||
- id: cache-chromedriver
|
||||
name: Chrome driver cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ./chromedriver
|
||||
key: chromedriver
|
||||
|
|
2
.github/actions/java-setup/action.yml
vendored
2
.github/actions/java-setup/action.yml
vendored
|
@ -16,7 +16,7 @@ runs:
|
|||
steps:
|
||||
- id: setup-java
|
||||
name: Setup Java
|
||||
uses: actions/setup-java@v3
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: ${{ inputs.distribution }}
|
||||
java-version: ${{ inputs.java-version }}
|
||||
|
|
6
.github/actions/maven-cache/action.yml
vendored
6
.github/actions/maven-cache/action.yml
vendored
|
@ -19,7 +19,7 @@ runs:
|
|||
|
||||
- id: cache-maven-repository
|
||||
name: Maven cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
if: inputs.create-cache-if-it-doesnt-exist == 'true'
|
||||
with:
|
||||
# Two asterisks are needed to make the follow-up exclusion work
|
||||
|
@ -31,7 +31,7 @@ runs:
|
|||
|
||||
- id: restore-maven-repository
|
||||
name: Maven cache
|
||||
uses: actions/cache/restore@v3
|
||||
uses: actions/cache/restore@v4
|
||||
if: inputs.create-cache-if-it-doesnt-exist == 'false'
|
||||
with:
|
||||
# Two asterisks are needed to make the follow-up exclusion work
|
||||
|
@ -42,7 +42,7 @@ runs:
|
|||
key: ${{ steps.weekly-cache-key.outputs.key }}
|
||||
|
||||
- name: Cache Maven Wrapper
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: .mvn/wrapper/maven-wrapper.jar
|
||||
key: ${{ runner.os }}-maven-wrapper-${{ hashFiles('**/maven-wrapper.properties') }}
|
||||
|
|
2
.github/actions/phantomjs-cache/action.yml
vendored
2
.github/actions/phantomjs-cache/action.yml
vendored
|
@ -12,7 +12,7 @@ runs:
|
|||
steps:
|
||||
- id: cache-phantomjs-driver
|
||||
name: PhantomJS Driver cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.arquillian/drone
|
||||
key: phantomjs-${{ inputs.version }}
|
||||
|
|
4
.github/actions/pnpm-setup/action.yml
vendored
4
.github/actions/pnpm-setup/action.yml
vendored
|
@ -16,7 +16,7 @@ runs:
|
|||
using: composite
|
||||
steps:
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ inputs.node-version }}
|
||||
check-latest: true
|
||||
|
@ -31,7 +31,7 @@ runs:
|
|||
run: |
|
||||
echo "store-path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
|
||||
|
||||
- uses: actions/cache@v3
|
||||
- uses: actions/cache@v4
|
||||
name: Setup PNPM cache
|
||||
with:
|
||||
# Also cache Cypress binary.
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -720,7 +720,7 @@ jobs:
|
|||
|
||||
- id: cache-maven-repository
|
||||
name: ipa-data cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/ipa-data.tar
|
||||
key: ${{ steps.weekly-cache-key.outputs.key }}
|
||||
|
|
Loading…
Reference in a new issue