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: |
|
run: |
|
||||||
echo "version=$(mvn help:evaluate -Dexpression=pnpm.version -q -DforceStdout)" >> $GITHUB_OUTPUT
|
echo "version=$(mvn help:evaluate -Dexpression=pnpm.version -q -DforceStdout)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v4
|
||||||
name: Cache PNPM store
|
name: Cache PNPM store
|
||||||
with:
|
with:
|
||||||
# See: https://pnpm.io/npmrc#store-dir
|
# 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:
|
steps:
|
||||||
- id: cache-chrome-browser
|
- id: cache-chrome-browser
|
||||||
name: Chrome browser cache
|
name: Chrome browser cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ./chrome
|
path: ./chrome
|
||||||
key: chrome
|
key: chrome
|
||||||
|
|
||||||
- id: cache-chromedriver
|
- id: cache-chromedriver
|
||||||
name: Chrome driver cache
|
name: Chrome driver cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ./chromedriver
|
path: ./chromedriver
|
||||||
key: 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:
|
steps:
|
||||||
- id: setup-java
|
- id: setup-java
|
||||||
name: Setup Java
|
name: Setup Java
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: ${{ inputs.distribution }}
|
distribution: ${{ inputs.distribution }}
|
||||||
java-version: ${{ inputs.java-version }}
|
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
|
- id: cache-maven-repository
|
||||||
name: Maven cache
|
name: Maven cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
if: inputs.create-cache-if-it-doesnt-exist == 'true'
|
if: inputs.create-cache-if-it-doesnt-exist == 'true'
|
||||||
with:
|
with:
|
||||||
# Two asterisks are needed to make the follow-up exclusion work
|
# Two asterisks are needed to make the follow-up exclusion work
|
||||||
|
@ -31,7 +31,7 @@ runs:
|
||||||
|
|
||||||
- id: restore-maven-repository
|
- id: restore-maven-repository
|
||||||
name: Maven cache
|
name: Maven cache
|
||||||
uses: actions/cache/restore@v3
|
uses: actions/cache/restore@v4
|
||||||
if: inputs.create-cache-if-it-doesnt-exist == 'false'
|
if: inputs.create-cache-if-it-doesnt-exist == 'false'
|
||||||
with:
|
with:
|
||||||
# Two asterisks are needed to make the follow-up exclusion work
|
# Two asterisks are needed to make the follow-up exclusion work
|
||||||
|
@ -42,7 +42,7 @@ runs:
|
||||||
key: ${{ steps.weekly-cache-key.outputs.key }}
|
key: ${{ steps.weekly-cache-key.outputs.key }}
|
||||||
|
|
||||||
- name: Cache Maven Wrapper
|
- name: Cache Maven Wrapper
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: .mvn/wrapper/maven-wrapper.jar
|
path: .mvn/wrapper/maven-wrapper.jar
|
||||||
key: ${{ runner.os }}-maven-wrapper-${{ hashFiles('**/maven-wrapper.properties') }}
|
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:
|
steps:
|
||||||
- id: cache-phantomjs-driver
|
- id: cache-phantomjs-driver
|
||||||
name: PhantomJS Driver cache
|
name: PhantomJS Driver cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.arquillian/drone
|
path: ~/.arquillian/drone
|
||||||
key: phantomjs-${{ inputs.version }}
|
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
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: ${{ inputs.node-version }}
|
node-version: ${{ inputs.node-version }}
|
||||||
check-latest: true
|
check-latest: true
|
||||||
|
@ -31,7 +31,7 @@ runs:
|
||||||
run: |
|
run: |
|
||||||
echo "store-path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
|
echo "store-path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v4
|
||||||
name: Setup PNPM cache
|
name: Setup PNPM cache
|
||||||
with:
|
with:
|
||||||
# Also cache Cypress binary.
|
# 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
|
- id: cache-maven-repository
|
||||||
name: ipa-data cache
|
name: ipa-data cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/ipa-data.tar
|
path: ~/ipa-data.tar
|
||||||
key: ${{ steps.weekly-cache-key.outputs.key }}
|
key: ${{ steps.weekly-cache-key.outputs.key }}
|
||||||
|
|
Loading…
Reference in a new issue