Skip to content

Commit 4035d0c

Browse files
committed
Pinned ubuntu to 24.04, bumped actions/checkout to 6.0.2
1 parent 747dcd0 commit 4035d0c

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/lint-on-push-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ jobs:
55

66
eslint:
77
name: ESLint
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
permissions:
1010
contents: read
1111

1212
steps:
1313

1414
- name: Checkout repository code
15-
uses: actions/checkout@v6.0.1
15+
uses: actions/checkout@v6.0.2
1616

1717
- name: Set up Node.js
1818
uses: actions/setup-node@v6.3.0

.github/workflows/sync-changes-to-gitlab.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
if: (github.repository == 'KudoAI/googlegpt')
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04
1111
permissions:
1212
contents: read
1313
env:
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717

1818
- name: Checkout KudoAI/googlegpt
19-
uses: actions/checkout@v6.0.1
19+
uses: actions/checkout@v6.0.2
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/sync-changes-to-repos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
if: (github.repository == 'KudoAI/googlegpt') && (github.event.commits[0].committer.username != 'kudo-sync-bot')
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
permissions:
1313
contents: read
1414
env:
@@ -17,21 +17,21 @@ jobs:
1717
steps:
1818

1919
- name: Checkout KudoAI/googlegpt
20-
uses: actions/checkout@v6.0.1
20+
uses: actions/checkout@v6.0.2
2121
with:
2222
token: ${{ secrets.REPO_SYNC_PAT }}
2323
path: KudoAI/googlegpt
2424
fetch-depth: 2
2525

2626
- name: Checkout adamlui/ai-web-extensions
27-
uses: actions/checkout@v6.0.1
27+
uses: actions/checkout@v6.0.2
2828
with:
2929
token: ${{ secrets.REPO_SYNC_PAT }}
3030
repository: adamlui/ai-web-extensions
3131
path: adamlui/ai-web-extensions
3232

3333
- name: Checkout adamlui/userscripts
34-
uses: actions/checkout@v6.0.1
34+
uses: actions/checkout@v6.0.2
3535
with:
3636
token: ${{ secrets.REPO_SYNC_PAT }}
3737
repository: adamlui/userscripts

0 commit comments

Comments
 (0)