Skip to content

Commit f4ee5ab

Browse files
committed
style: runs-on: ubuntu-latest
1 parent 1cc7e75 commit f4ee5ab

9 files changed

+13
-13
lines changed

.github/workflows/docker-multistage-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
# -----------------------------------------------------------------------------------------------
6363
build:
6464
name: ${{ matrix.NAME }}-${{ matrix.VERSION }}-${{ inputs.stage }} (${{ matrix.ARCH }}) ${{ matrix.REFS }}
65-
runs-on: ubuntu-22.04
65+
runs-on: ubuntu-latest
6666
strategy:
6767
fail-fast: false
6868
matrix:

.github/workflows/docker-multistage-configure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
configure:
8686
name: Configure
8787
if: ${{ inputs.enabled }}
88-
runs-on: ubuntu-22.04
88+
runs-on: ubuntu-latest
8989

9090
###
9191
### Outputs

.github/workflows/docker-multistage-push-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# -----------------------------------------------------------------------------------------------
4545
deploy:
4646
name: ${{ matrix.NAME }}-${{ matrix.VERSION }}-${{ inputs.stage }} (${{ matrix.ARCH }}) ${{ matrix.REFS }}
47-
runs-on: ubuntu-22.04
47+
runs-on: ubuntu-latest
4848
strategy:
4949
fail-fast: false
5050
matrix:

.github/workflows/docker-multistage-push-manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
# -----------------------------------------------------------------------------------------------
4747
deploy:
4848
name: ${{ matrix.NAME }}-${{ matrix.VERSION }}-${{ inputs.stage }} ${{ matrix.REFS }}
49-
runs-on: ubuntu-22.04
49+
runs-on: ubuntu-latest
5050
strategy:
5151
fail-fast: false
5252
matrix:

.github/workflows/docker-multistage-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# -----------------------------------------------------------------------------------------------
3131
test:
3232
name: ${{ matrix.NAME }}-${{ matrix.VERSION }}-${{ inputs.stage }} (${{ matrix.ARCH }}) ${{ matrix.REFS }}
33-
runs-on: ubuntu-22.04
33+
runs-on: ubuntu-latest
3434
strategy:
3535
fail-fast: false
3636
matrix:

.github/workflows/docker-name-version-arch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# -----------------------------------------------------------------------------------------------
4141
configure:
4242
name: Configure
43-
runs-on: ubuntu-22.04
43+
runs-on: ubuntu-latest
4444
outputs:
4545
can_login: ${{ steps.set-login.outputs.can_login }}
4646
has_refs: ${{ steps.set-matrix.outputs.has_refs }}
@@ -115,7 +115,7 @@ jobs:
115115
build:
116116
needs: [configure]
117117
name: Build ${{ matrix.name }}-${{ matrix.version }} (${{ matrix.arch }}) ${{ matrix.refs }}
118-
runs-on: ubuntu-22.04
118+
runs-on: ubuntu-latest
119119
strategy:
120120
fail-fast: false
121121
matrix:
@@ -204,7 +204,7 @@ jobs:
204204
deploy:
205205
needs: [configure, build]
206206
name: Deploy ${{ matrix.name }}-${{ matrix.version }} ${{ matrix.refs }}
207-
runs-on: ubuntu-22.04
207+
runs-on: ubuntu-latest
208208
strategy:
209209
fail-fast: false
210210
matrix:

.github/workflows/docker-name-version-flavour-arch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# -----------------------------------------------------------------------------------------------
4141
configure:
4242
name: Configure
43-
runs-on: ubuntu-22.04
43+
runs-on: ubuntu-latest
4444
outputs:
4545
can_login: ${{ steps.set-login.outputs.can_login }}
4646
has_refs: ${{ steps.set-matrix.outputs.has_refs }}
@@ -115,7 +115,7 @@ jobs:
115115
build:
116116
needs: [configure]
117117
name: Build ${{ matrix.name }}-${{ matrix.version }} (${{ matrix.flavour }}) (${{ matrix.arch }}) ${{ matrix.refs }}
118-
runs-on: ubuntu-22.04
118+
runs-on: ubuntu-latest
119119
strategy:
120120
fail-fast: false
121121
matrix:
@@ -204,7 +204,7 @@ jobs:
204204
deploy:
205205
needs: [configure, build]
206206
name: Deploy ${{ matrix.name }}-${{ matrix.version }} (${{ matrix.flavour }}) ${{ matrix.refs }}
207-
runs-on: ubuntu-22.04
207+
runs-on: ubuntu-latest
208208
strategy:
209209
fail-fast: false
210210
matrix:

.github/workflows/lint-generic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# -----------------------------------------------------------------------------------------------
1111
lint:
1212
name: lint
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-latest
1414
steps:
1515

1616
- name: "[SETUP] Checkout repository"

.github/workflows/release-drafter.yml

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

99
jobs:
1010
update_release_draft:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-latest
1212
steps:
1313
# Drafts your next Release notes as Pull Requests are merged into "main"
1414
- uses: release-drafter/release-drafter@v6

0 commit comments

Comments
 (0)