Run workflow with ubuntu-latest

This commit is contained in:
Héctor Molinero Fernández 2022-07-17 12:23:50 +02:00
parent 6bf0444e8f
commit 5ce4479549

View File

@ -14,7 +14,7 @@ jobs:


build-common-stages: build-common-stages:
name: 'Build common stages' name: 'Build common stages'
runs-on: 'ubuntu-22.04' runs-on: 'ubuntu-latest'
permissions: permissions:
contents: 'read' contents: 'read'
strategy: strategy:
@ -39,7 +39,7 @@ jobs:
build: build:
name: 'Build ${{ matrix.arch }} image' name: 'Build ${{ matrix.arch }} image'
needs: ['build-common-stages'] needs: ['build-common-stages']
runs-on: 'ubuntu-22.04' runs-on: 'ubuntu-latest'
permissions: permissions:
contents: 'read' contents: 'read'
strategy: strategy:
@ -78,7 +78,7 @@ jobs:
name: 'Push ${{ matrix.arch }} image' name: 'Push ${{ matrix.arch }} image'
if: "startsWith(github.ref, 'refs/tags/v')" if: "startsWith(github.ref, 'refs/tags/v')"
needs: ['build'] needs: ['build']
runs-on: 'ubuntu-22.04' runs-on: 'ubuntu-latest'
permissions: permissions:
contents: 'read' contents: 'read'
strategy: strategy:
@ -106,7 +106,7 @@ jobs:
name: 'Push manifest' name: 'Push manifest'
if: "startsWith(github.ref, 'refs/tags/v')" if: "startsWith(github.ref, 'refs/tags/v')"
needs: ['push'] needs: ['push']
runs-on: 'ubuntu-22.04' runs-on: 'ubuntu-latest'
permissions: permissions:
contents: 'read' contents: 'read'
steps: steps:
@ -126,7 +126,7 @@ jobs:
name: 'Create GitHub release' name: 'Create GitHub release'
if: "startsWith(github.ref, 'refs/tags/v')" if: "startsWith(github.ref, 'refs/tags/v')"
needs: ['push-manifest'] needs: ['push-manifest']
runs-on: 'ubuntu-22.04' runs-on: 'ubuntu-latest'
permissions: permissions:
contents: 'write' contents: 'write'
steps: steps: