Update github action versions (#27692)

Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
Stian Thorgersen 2024-03-22 08:57:41 +01:00 committed by GitHub
parent 6cc66109d5
commit 2672b362c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 11 additions and 11 deletions

View file

@ -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

View file

@ -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

View file

@ -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 }}

View file

@ -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') }}

View file

@ -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 }}

View file

@ -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.

View file

@ -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 }}