Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: try out new ubuntu version #122

Merged
merged 1 commit into from
Dec 18, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/00-init-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
init:
name: Init Playground
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/00-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
init:
name: Init
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-build-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
build:
name: Build Playground
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
cypress:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
timeout-minutes: 10
steps:
- name: ⬇️ Checkout repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
test:
name: Test
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/02-deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/02-npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/99-add-issue-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
add-issue-to-project:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
clean:
name: Clean
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permissions:

jobs:
dependency-review:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
update-prs:
name: Update PRs
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-release-candidate-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
update-release-candidate-branch:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
zap:
name: Zap
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: ZAP Scan
uses: zaproxy/action-baseline@v0.7.0
Expand Down
Loading