Skip to content

Commit

Permalink
Fix Archivematica acceptance tests workflow
Browse files Browse the repository at this point in the history
GitHub started running jobs marked with ubuntu-latest on Ubuntu 24.04
which breaks the AMAUATs workflow.

This pins the test job of the workflow to run on Ubuntu 22.04 due to
MySQL failures in Podman 4+ containers.
  • Loading branch information
replaceafill committed Oct 14, 2024
1 parent ee885b7 commit b43aa63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/archivematica-acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
test:
name: "${{ matrix.feature }} / ${{ matrix.docker_image.label }}"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-22.04"
env:
am_version: "${{ inputs.am_version || 'qa/1.x' }}"
ss_version: "${{ inputs.ss_version || 'qa/0.x' }}"
Expand Down

0 comments on commit b43aa63

Please sign in to comment.