Skip to content
Closed
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
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ env:
name: Windows_X86-64_zip
- config:
name: Linux
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container: |
{
\"image\": \"ghcr.io/arduino/arduino-ide/linux:main\"
Expand Down Expand Up @@ -140,7 +140,7 @@ env:

jobs:
run-determination:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
result: ${{ steps.determination.outputs.result }}
permissions: {}
Expand All @@ -166,7 +166,7 @@ jobs:
build-type-determination:
needs: run-determination
if: needs.run-determination.outputs.result == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
is-release: ${{ steps.determination.outputs.is-release }}
is-nightly: ${{ steps.determination.outputs.is-nightly }}
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:

select-targets:
needs: build-type-determination
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
artifact-matrix: ${{ steps.assemble.outputs.artifact-matrix }}
build-matrix: ${{ steps.assemble.outputs.build-matrix }}
Expand Down Expand Up @@ -434,7 +434,7 @@ jobs:
- select-targets
- build
if: needs.select-targets.outputs.merge-channel-files == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions: {}
steps:
- name: Set environment variables
Expand Down Expand Up @@ -498,7 +498,7 @@ jobs:
- select-targets
- build
if: always() && needs.build.result != 'skipped'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

env:
BUILD_ARTIFACTS_FOLDER: build-artifacts
Expand All @@ -524,7 +524,7 @@ jobs:
needs:
- build-type-determination
- build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
BODY: ${{ steps.changelog.outputs.BODY }}
steps:
Expand Down Expand Up @@ -583,7 +583,7 @@ jobs:
needs.changelog.result == 'success' &&
needs.build-type-determination.outputs.publish-to-s3 == 'true' &&
needs.build-type-determination.outputs.is-nightly == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

env:
ARTIFACTS_FOLDER: build-artifacts
Expand Down Expand Up @@ -620,7 +620,7 @@ jobs:
) &&
needs.changelog.result == 'success' &&
needs.build-type-determination.outputs.is-release == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

env:
ARTIFACTS_FOLDER: build-artifacts
Expand Down Expand Up @@ -668,7 +668,7 @@ jobs:
- release
- artifacts
if: always() && needs.build.result != 'skipped'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Remove unneeded job transfer artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-certificates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:

jobs:
run-determination:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
result: ${{ steps.determination.outputs.result }}
steps:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
name: ${{ matrix.certificate.identifier }}
needs: run-determination
if: needs.run-determination.outputs.result == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:
run:
name: Run (${{ matrix.image.path }})
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions: {}
services:
registry:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-i18n-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:

jobs:
run-determination:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
result: ${{ steps.determination.outputs.result }}
permissions: {}
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
check:
needs: run-determination
if: needs.run-determination.outputs.result == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on:

jobs:
run-determination:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions: {}
outputs:
result: ${{ steps.determination.outputs.result }}
Expand All @@ -59,7 +59,7 @@ jobs:
check:
needs: run-determination
if: needs.run-determination.outputs.result == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: read

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-yarn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:

jobs:
run-determination:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions: {}
outputs:
result: ${{ steps.determination.outputs.result }}
Expand All @@ -52,7 +52,7 @@ jobs:
name: check-sync (${{ matrix.project.path }})
needs: run-determination
if: needs.run-determination.outputs.result == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: read

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compose-full-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
create-changelog:
if: github.repository == 'arduino/arduino-ide'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-nightly-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
push-to-transifex:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-weekly-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
pull-from-transifex:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-container-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name == 'arduino/arduino-ide'
)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:

jobs:
check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

download:
needs: check
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
matrix:
Expand All @@ -81,7 +81,7 @@ jobs:

sync:
needs: download
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Set environment variables
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ on:

jobs:
run-determination:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions: {}
outputs:
result: ${{ steps.determination.outputs.result }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- path: .
operating-system:
- macos-latest
- ubuntu-latest
- ubuntu-22.04
- windows-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/themes-weekly-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
pull-from-jsonbin:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
Loading