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 Oct 4, 2024
1 parent fda46d2 commit 23267f0
Show file tree
Hide file tree
Showing 19 changed files with 120 additions and 120 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-images-and-create-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
create_deployment:
needs:
- build_images
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Generate payload
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- processing
- wmg_processing
- cellguide_pipeline
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
image_tag: ${{ steps.push_images.outputs.image_tag }}
steps:
Expand All @@ -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/clean_happy_rdev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
build:
name: Clean happy stacks
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
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
32 changes: 16 additions & 16 deletions .github/workflows/deploy-happy-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:

jobs:
upgrade:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/setup-node@v4
with:
Expand Down 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 @@ -97,7 +97,7 @@ jobs:
if: failure() && github.ref == 'refs/heads/main'

github-tag-and-release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: github.event.deployment.environment == 'prod'
needs:
- upgrade
Expand All @@ -121,7 +121,7 @@ jobs:
tag_exists_error: false
- name: Build Changelog
id: build_changelog
uses: mikepenz/release-changelog-builder-action@v4
uses: mikepenz/release-changelog-builder-action@v5
with:
fromTag: ${{ steps.fetch_tag.outputs.PREVIOUS_TAG }}
- name: Produce Github Release for Prod Deployments
Expand All @@ -133,7 +133,7 @@ jobs:

e2e-logged-in-test:
timeout-minutes: 30
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- upgrade
steps:
Expand All @@ -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@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: logged-in-test-results
Expand All @@ -203,7 +203,7 @@ jobs:
run-e2e-tests:
timeout-minutes: 30
name: e2e-tests ${{ matrix.project }} ${{ matrix.shardCurrent }} of ${{ matrix.shardTotal }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- upgrade
strategy:
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 @@ -303,7 +303,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

functional-test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 30
needs:
- upgrade
Expand All @@ -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 @@ -358,7 +358,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

performance-test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 30
needs:
- upgrade
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 All @@ -402,7 +402,7 @@ jobs:
make prod-performance-test
status:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ always() }} # Ensures status is run after post-deploy tests, even if they fail
needs:
- performance-test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: amannn/[email protected].2
- uses: amannn/[email protected].3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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
6 changes: 3 additions & 3 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 All @@ -43,7 +43,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push to GitHub Packages
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ steps.meta.outputs.tags }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-rdev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
secrets: inherit

summarize:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.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 23267f0

Please sign in to comment.