Skip to content

Commit

Permalink
Merge #414
Browse files Browse the repository at this point in the history
414: Specify Ubuntu 20.04 instead of 'latest' in github configuration. r=epgts a=epgts

'ubuntu-latest' is currently documented as being 20.04:
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on

But let's lock that in now rather than surrender our update schedule
to GitHub.


Co-authored-by: Eric Gillespie <epg@timescale.com>
  • Loading branch information
bors[bot] and epgts authored Jun 22, 2022
2 parents 01590d8 + 47a53aa commit 68de268
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
testpostgres:
name: Test Postgres
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container:
image: timescaledev/rust-pgx:latest
strategy:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

testcrates:
name: Test Crates
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container:
image: timescaledev/rust-pgx:latest
env:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

testupdates:
name: Test Updates
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container:
image: timescaledev/rust-pgx:latest
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
clippy:
name: Clippy Test
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container:
image: timescaledev/rust-pgx:latest
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
package:
env:
GITHUB_TOKEN: ${{ secrets.API_TOKEN_GITHUB_PACKAGE }}
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report_packaging_failures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
on-failure:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: ${{ github.event.workflow_run.conclusion != 'success' && github.event.workflow_run.event != 'pull_request' }}
steps:
- name: slack-send
Expand Down

0 comments on commit 68de268

Please sign in to comment.