Skip to content

Commit

Permalink
chore(deps): update github actions all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 26, 2024
1 parent cd8e32f commit 3edc08f
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
deploys:
name: Helm
environment: ${{ inputs.environment }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: ${{ inputs.timeout-minutes }}
steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
integration-tests:
if: github.repository == 'disabling_integration_tests_for_now'
name: Integration Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
- uses: actions/checkout@v4
- id: cache-npm
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-build-cache-node-modules-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -39,7 +39,7 @@ jobs:
cypress-e2e:
if: github.repository == 'disabling_integration_tests_for_now'
name: E2E Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: frontend
Expand All @@ -50,7 +50,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: cache-npm
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-build-cache-node-modules-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -68,7 +68,7 @@ jobs:
working-directory: ./frontend
browser: ${{ matrix.browser }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
CodeQL:
name: CodeQL
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
language: [python]
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
trivy:
name: Trivy Security Scan
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -70,7 +70,7 @@ jobs:
python:
name: Python
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: backend
Expand All @@ -90,12 +90,12 @@ jobs:
- 5432:5432
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ hashFiles('**/pyproject.toml') }}
Expand All @@ -108,7 +108,7 @@ jobs:
installer-parallel: true

- id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Set Variables
outputs:
pr: ${{ steps.pr.outputs.pr }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
# Get PR number for squash merges to main
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
conventional-commits:
if: github.event_name == 'pull_request'
name: Conventional Commits
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: amannn/action-semantic-pull-request@v5.4.0
env:
Expand All @@ -26,7 +26,7 @@ jobs:
env:
DOMAIN: apps.silver.devops.gov.bc.ca
PREFIX: ${{ github.event.repository.name }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
pull-requests: write
timeout-minutes: 1
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
asg: ${{ steps.deploys.outputs.asg }}
env: ${{ steps.deploys.outputs.env }}
tag: ${{ steps.deploys.outputs.tag }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Set Variables
id: deploys
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
builds:
name: Builds
needs: [vars]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
build-custom:
name: Build Migrations
needs: [vars]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
timeout-minutes: 10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

generate-schema-spy:
name: Generate SchemaSpy Documentation
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
services:
postgres:
image: postgres
Expand Down

0 comments on commit 3edc08f

Please sign in to comment.