diff options
| author | Fabian Mastenbroek <fmastenbroek@meta.com> | 2023-01-06 14:41:33 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2023-01-07 21:55:56 +0000 |
| commit | 0c0a823fec1e67be6f9e72c0c790636f364f8b23 (patch) | |
| tree | 881bf32b4eaae92a4e2aa53a662f2e8f37d61aa4 /.github/workflows/publish.yml | |
| parent | be6ec3bbdff8f7c8f625506b77c7586ee2ad5eb5 (diff) | |
ci: Pin version of GitHub Actions runner images
This change pins the versions of the GitHub Actions runner images used
by our workflows to prevent regressions when the latest Ubuntu/Windows
image is updated.
Diffstat (limited to '.github/workflows/publish.yml')
| -rw-r--r-- | .github/workflows/publish.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6bc5e2bc..4a0f6cde 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,7 +7,7 @@ on: jobs: push-simulator: name: Push Simulator - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Prepare id: prep @@ -32,7 +32,7 @@ jobs: tags: ${{ steps.prep.outputs.tags }} push-api: name: Push API - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Prepare id: prep @@ -56,7 +56,7 @@ jobs: tags: ${{ steps.prep.outputs.tags }} push-ui: name: Push UI - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Prepare id: prep |
