Skip to content

Commit 9150cb8

Browse files
committed
github: Use older ubuntu
It seems awscli suddenly disappeared in Ubuntu 24.04. It seems to come back in later versions. For now, using an older Ubuntu.
1 parent 8c9a170 commit 9150cb8

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
environment:
2020
name: github-pages
2121
url: ${{ steps.deployment.outputs.page_url }}
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-22.04
2323
steps:
2424
- name: Deploy to GitHub Pages
2525
id: deployment
2626
uses: actions/deploy-pages@v1
2727

2828
deploy-aws:
2929
needs: build
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
steps:
3232
- run: sudo apt-get update
3333
- run: sudo apt-get install awscli

.github/workflows/build-standalone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build-standalone:
1111
strategy:
1212
matrix:
13-
os: [macos-latest, ubuntu-latest, windows-latest]
13+
os: [macos-latest, ubuntu-22.04, windows-latest]
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- uses: actions/checkout@v3

.github/workflows/build-vscode-extension.yml

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

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/checkout@v3
1414
- uses: ./.github/actions/setup

.github/workflows/build.yml

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

1010
jobs:
1111
build:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: ./.github/actions/setup

.github/workflows/publish-release.yml

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

1111
publish-npm:
1212
needs: build
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- uses: actions/checkout@v3
1616
- uses: ./.github/actions/setup

.github/workflows/publish-standalone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
needs: build
1313
strategy:
1414
matrix:
15-
os: [macos-latest, ubuntu-latest, windows-latest]
15+
os: [macos-latest, ubuntu-22.04, windows-latest]
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)