Skip to content

Commit

Permalink
chore(deps): update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored May 30, 2024
1 parent d2a0988 commit 726293c
Show file tree
Hide file tree
Showing 15 changed files with 83 additions and 83 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ secrets.ECR_REPO }}
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install happy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close-inactive-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
- uses: actions/stale@v9
with:
days-before-issue-stale: -1 # Do not mark any issues as stale
days-before-pr-stale: 14
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/deploy-happy-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ secrets.ECR_REPO }}
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.deployment.sha }}
fetch-depth: 1
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.deployment.sha }}
fetch-depth: 1
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
npx playwright install --with-deps
cp src/configs/${DEPLOYMENT_STAGE}.js src/configs/configs.js
DEBUG=pw:api npm run e2e-${DEPLOYMENT_STAGE}-logged-in
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: always()
with:
name: logged-in-test-results
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ secrets.ECR_REPO }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install dependencies
Expand All @@ -256,15 +256,15 @@ jobs:
- name: Upload FE test results as an artifact
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: playwright-report ${{ matrix.project }} ${{ matrix.shardCurrent }} of ${{ matrix.shardTotal }}
path: /home/runner/work/single-cell-data-portal/single-cell-data-portal/frontend/playwright-report
retention-days: 14

- name: Upload blob report to GitHub Actions Artifacts
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: all-blob-reports
path: /home/runner/work/single-cell-data-portal/single-cell-data-portal/frontend/blob-report
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
aws-region: us-west-2
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
role-duration-seconds: 2700
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.deployment.sha }}
fetch-depth: 1
Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ secrets.ECR_REPO }}
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.deployment.sha }}
fetch-depth: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote-staging-to-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history to make merges work correctly
- name: Merge staging branch into prod branch
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-processing-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Docker meta
id: meta
uses: crazy-max/ghaction-docker-meta@v2
uses: crazy-max/ghaction-docker-meta@v5
with:
# list of Docker images to use as base name for tags
images: ghcr.io/${{ github.repository_owner }}/corpora-upload-base
Expand All @@ -28,7 +28,7 @@ jobs:
type=sha
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-rdev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-22.04
needs: build_images
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Create Summary With Happy Commands
Expand Down
Loading

0 comments on commit 726293c

Please sign in to comment.