Skip to content

Commit 7e376a3

Browse files
authored
refactor: try out new ubuntu version (#38)
1 parent 52b60cf commit 7e376a3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/00-init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
init:
88
name: Init
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⏬ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/99-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
dependabot:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
99
if: ${{ github.actor == 'dependabot[bot]' }}
1010
steps:
1111
- name: ⏬ Dependabot metadata

.github/workflows/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
build:
1919
name: Build
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
2121
needs: [init]
2222
steps:
2323
- name: ⏬ Checkout repo

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
publish:
1313
name: Upload Figma Plugin/Widget to release page
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1515
needs: [init]
1616
strategy:
1717
fail-fast: false

0 commit comments

Comments
 (0)