Skip to content

Commit

Permalink
#6303 – Update GitHub actions version to v4 (#6304)
Browse files Browse the repository at this point in the history
  • Loading branch information
svvald authored Jan 17, 2025
1 parent 0148f5a commit fe163c8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/playwright-macromolecules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
timeout-minutes: 120
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18.12.0
- name: Install dependencies
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Run playwright tests in docker
run: cd ketcher-autotests && npm run docker:test

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
# run even if previous steps fails
if: always()
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
timeout-minutes: 150
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18.12.0
- name: Install dependencies
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Run playwright tests in docker
run: cd ketcher-autotests && npm run docker:test

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
# run even if previous steps fails
if: always()
with:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: apt-get update -y && apt-get install -y git
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Git safe
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Build all packages
run: npm run build:packages && npm run build:example:standalone
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ketcher-dist-micro
path: example/dist
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Install dependencies
run: apt-get update -y && apt-get install -y git
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Git safe
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Build all packages
run: npm run build:packages && npm run build:example:standalone
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ketcher-dist-macro
path: example/dist
Expand All @@ -81,15 +81,15 @@ jobs:
shardTotal: [2]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install dependencies
run: npm ci
- name: Create folder for dist
run: mkdir -p example/dist
- name: Download compiled ketcher
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ketcher-dist-micro
path: example/dist/
Expand All @@ -113,7 +113,7 @@ jobs:
npm i
npx playwright install chromium
npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
# run even if previous steps fails
if: always()
with:
Expand All @@ -133,15 +133,15 @@ jobs:
shardTotal: [4]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install dependencies
run: npm ci
- name: Create folder for dist
run: mkdir -p example/dist
- name: Download compiled ketcher
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ketcher-dist-macro
path: example/dist/
Expand All @@ -165,7 +165,7 @@ jobs:
npm i
npx playwright install chromium
npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
# run even if previous steps fails
if: always()
with:
Expand Down

0 comments on commit fe163c8

Please sign in to comment.