Skip to content

Commit

Permalink
chore: upgrade github actions runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
frytg committed Jan 23, 2025
1 parent 0c56bdc commit 19f4d1d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ingest-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ env:
jobs:
security:
name: Check permissions for pull request runs
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: contains(github.event.pull_request.labels.*.name, 'safe to test')
steps:
- run: |
echo "Security checks passed!"
test:
needs: security
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
STAGES: [dev]
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:

license:
needs: security
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: 👀 Checkout Code
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ingest-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ env:
jobs:
security:
name: Check permissions for action runs
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.event.pull_request.merged == true || github.event_name == 'push'
steps:
- run: |
echo "Security checks passed!"
test:
needs: security
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: 👀 Checkout Code
uses: actions/checkout@v4
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
run: npm run ingest:test

docker:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: test
outputs:
VERSION: ${{ steps.push.outputs.VERSION }}
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
if: github.event.pull_request.merged == true
environment: dev
needs: docker
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: 🚀 Trigger deployment to dev
run: |
Expand All @@ -151,7 +151,7 @@ jobs:
if: github.event.pull_request.merged == true
environment: test
needs: docker
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: 🚀 Trigger deployment to test
run: |
Expand All @@ -166,7 +166,7 @@ jobs:
if: github.event.pull_request.merged == true
environment: beta
needs: docker
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: 🚀 Trigger deployment to beta
run: |
Expand Down

0 comments on commit 19f4d1d

Please sign in to comment.