Skip to content

Commit

Permalink
fix: bump github runner versions (#2328)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanLav authored Sep 16, 2024
1 parent ebd84c5 commit 450f3a5
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ⚙️ Install dependencies
uses: ./.github/workflows/install-pnpm
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build_stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get version from package.json
id: pkg
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
echo "${{ steps.update_version.outputs.new_version }}" > internal_version.txt
- name: Upload artifact with version
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: internal-version
path: |
Expand All @@ -71,10 +71,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: internal-version

Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
pnpm stage:sequence
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-artifats
path: |
Expand All @@ -122,9 +122,9 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build-artifats

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ⚙️ Install dependencies
uses: ./.github/workflows/install-pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global_coverage_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Update Coverage on Readme
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: ⚙️ Install dependencies
uses: ./.github/workflows/install-pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_test_runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ⚙️ Install dependencies
uses: ./.github/workflows/install-pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_coverage_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ⚙️ Install dependencies
uses: ./.github/workflows/install-pnpm
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
pnpm dist
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-artifats
path: |
Expand All @@ -78,7 +78,7 @@ jobs:
needs: release-build
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build-artifats

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/system_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
if: github.event_name == 'schedule'
run: npx playwright test --grep @fee-test

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
Expand All @@ -76,7 +76,7 @@ jobs:
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Download zipped HTML report
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: playwright-report
path: ${{ env.HTML_REPORT_URL_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ⚙️ Install dependencies
uses: ./.github/workflows/install-pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_chains_file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set spektr config version
run: |
Expand Down

0 comments on commit 450f3a5

Please sign in to comment.