Skip to content

Commit

Permalink
Update to Ubuntu Lateset for CI workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinleroy committed Feb 21, 2024
1 parent ea08f80 commit 19cc38f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
jobs:
test-authentication:
if: contains(github.event.pull_request.labels.*.name, 'release')
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Ping remote
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:

build-backend:
needs: [check-publishable-versions,test-authentication]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and save docker image
Expand All @@ -70,7 +70,7 @@ jobs:

update-frontend:
needs: build-backend
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
AQUASCOPE_SERVER: "https://aquascope.willcrichton.net"
steps:
Expand All @@ -90,7 +90,7 @@ jobs:

update-server:
needs: update-frontend
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Restart server
Expand All @@ -103,7 +103,7 @@ jobs:

publish-crates:
needs: [update-frontend,update-server]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

release-artifact:
needs: tag
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 19cc38f

Please sign in to comment.