Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/benchmark-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: github.event.workflow_run.conclusion == 'success'
steps:
- name: "Download artifact"
uses: actions/github-script@v3.1
uses: actions/github-script@v8
with:
script: |
var artifacts = await github.actions.listWorkflowRunArtifacts({
Expand All @@ -46,7 +46,7 @@ jobs:
fs.writeFileSync('${{ github.workspace }}/benchmark-assets.zip', Buffer.from(download.data));
- run: unzip benchmark-assets.zip
- name: "Comment on PR"
uses: actions/github-script@v3.1
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
# Need to fetch enough nodes to get the common ancestor - but don't want to fetch everything
fetch-depth: 100

- name: Get hashes for PR review event
uses: actions/github-script@v4
uses: actions/github-script@v8
with:
script: |
const child_process = require("child_process");
Expand All @@ -52,7 +52,7 @@ jobs:
- uses: iterative/setup-cml@v1

- name: Cache Conda
uses: actions/cache@v1
uses: actions/cache@v5
with:
path: ~/.conda
key: ${{ runner.os }}-mconda-${{ hashFiles('**/configuration.yml') }}
Expand All @@ -70,7 +70,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn
uses: actions/cache@v1
uses: actions/cache@v5
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

- name: Upload Benchmark Assets
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v6
with:
name: benchmark-assets
path: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v6

- name: Install Conda environment with Micromamba
uses: mamba-org/provision-with-micromamba@main
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
sha256sum * | tee SHA256SUMS

- name: Upload builds
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v6
with:
name: dist ${{ github.run_number }}
path: ./beakerx_tabledisplay/dist
Expand All @@ -58,21 +58,21 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v6

- name: Checkout beakerx_base repo
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
repository: twosigma/beakerx_base
path: beakerx_base

- name: Checkout beakerx_tests repo
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
repository: twosigma/beakerx_tests
path: beakerx_tests

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v7
with:
name: dist ${{ github.run_number }}
path: ./dist
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
python ci_tests.py --app=lab --tbl=v1 --exp=yes --tst=python.Table*

- name: Archive screenshot results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v6
if: always()
with:
name: screenshots
Expand Down