Skip to content

Commit

Permalink
update github actions runner to latest ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
scottaubrey committed Dec 17, 2024
1 parent 697a4c3 commit 4da92ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# This seems to work faster than pulling during docker compose up
Expand All @@ -22,7 +22,7 @@ jobs:
run: curl -fI http://localhost:8182/iiif/2/515698v2_fig1.tif/full/full/0/default.jpg

build-and-push:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [test]
if: github.ref == 'refs/heads/master'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build-and-push:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
if: ${{ contains(github.event.pull_request.labels.*.name, 'preview') }}
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 4da92ec

Please sign in to comment.