Skip to content
Snippets Groups Projects
Unverified Commit 0533009a authored by Luis Paolini's avatar Luis Paolini Committed by GitHub
Browse files

Updated gh actions (#26167)

* Updating GH actions versions

* Included some linter fails by mistake
parent 9ef93b6c
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ outputs:
runs:
using: "composite"
steps:
- uses: actions/github-script@v4
- uses: actions/github-script@v6
id: get-latest-release-branch
with:
result-encoding: string
......
......@@ -9,7 +9,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/github-script@v4
- uses: actions/github-script@v6
id: get-latest-release-branch
with:
result-encoding: string
......
......@@ -29,7 +29,7 @@ runs:
run: echo "Commit message includes [ci nocache]; dependencies will NOT be cached"
shell: bash
- name: Get M2 cache
uses: actions/cache@v2
uses: actions/cache@v3
if: ${{ !contains(github.event.head_commit.message, '[ci nocache]') }}
with:
path: |
......
......@@ -7,7 +7,7 @@ runs:
run: echo "Commit message includes [ci nocache]; dependencies will NOT be cached"
shell: bash
- name: Get Cypress cache
uses: actions/cache@v2
uses: actions/cache@v3
if: ${{ !contains(github.event.head_commit.message, '[ci nocache]') }}
with:
path: ~/.cache/Cypress
......
......@@ -14,13 +14,13 @@ runs:
yarn cache clean
shell: bash
- name: Get M2 cache
uses: actions/cache@v2
uses: actions/cache@v3
if: ${{ !contains(github.event.head_commit.message, '[ci nocache]') }}
with:
path: ~/.m2
key: ${{ runner.os }}-cljs-${{ hashFiles('**/shadow-cljs.edn') }}
- name: Get node_modules cache
uses: actions/cache@v2
uses: actions/cache@v3
if: ${{ !contains(github.event.head_commit.message, '[ci nocache]') }}
with:
path: node_modules
......
......@@ -9,7 +9,7 @@ runs:
run: sha256sum ./target/uberjar/metabase.jar > SHA256.sum
shell: bash
- name: Upload JARs as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: metabase-${{ matrix.edition }}-uberjar
path: |
......
......@@ -88,7 +88,7 @@ jobs:
--config-file frontend/test/metabase/scenarios/cross-version/target/cross-version-target.config.js \
--spec frontend/test/metabase/scenarios/cross-version/target/**/*.cy.spec.js
- name: Upload Cypress Artifacts upon failure
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-artifacts-${{ matrix.version.source}}-to-${{ matrix.version.target }}
......
......@@ -130,7 +130,7 @@ jobs:
- name: Run Snowplow micro
uses: ./.github/actions/run-snowplow-micro
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
name: Retrieve uberjar artifact for ${{ matrix.edition }}
with:
name: metabase-${{ matrix.edition }}-uberjar
......@@ -159,7 +159,7 @@ jobs:
TERM: xterm
- name: Upload Cypress Artifacts upon failure
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-artifacts-${{ matrix.folder }}-${{ matrix.edition }}
......@@ -202,7 +202,7 @@ jobs:
- name: Prepare Cypress environment
uses: ./.github/actions/prepare-cypress
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
name: Retrieve uberjar artifact for ${{ matrix.edition }}
with:
name: metabase-${{ matrix.edition }}-uberjar
......
......@@ -134,7 +134,7 @@ jobs:
- name: Run Snowplow micro
uses: ./.github/actions/run-snowplow-micro
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
name: Retrieve uberjar artifact for ${{ matrix.edition }}
with:
name: metabase-${{ matrix.edition }}-uberjar
......@@ -162,7 +162,7 @@ jobs:
TERM: xterm
- name: Upload Cypress Artifacts upon failure
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-recording-${{ matrix.folder }}${{ matrix.context }}-${{ matrix.edition }}
......@@ -204,7 +204,7 @@ jobs:
- name: Prepare Cypress environment
uses: ./.github/actions/prepare-cypress
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
name: Retrieve uberjar artifact for ${{ matrix.edition }}
with:
name: metabase-${{ matrix.edition }}-uberjar
......
......@@ -55,7 +55,7 @@ jobs:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- run: java -version
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
name: Retrieve uberjar artifact
with:
name: metabase-${{ matrix.edition }}-uberjar
......@@ -87,7 +87,7 @@ jobs:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.commit }}
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
name: Retrieve uberjar artifact
with:
name: metabase-${{ matrix.edition }}-uberjar
......
......@@ -49,7 +49,7 @@ jobs:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- run: java -version
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
name: Retrieve uberjar artifact
with:
name: metabase-${{ matrix.edition }}-uberjar
......@@ -78,7 +78,7 @@ jobs:
- name: Check out the code (Dockerfile needed)
uses: actions/checkout@v3
- name: Download uploaded artifacts to insert into container
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: metabase-${{ matrix.edition }}-uberjar
path: bin/docker/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment