Bump ruby from b4c321a
to 9d4892f
#44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: ♻️ Test | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
container-structure-test: | |
name: Container Structure Test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set Up Container Structure Test | |
id: setup_container_structure_test | |
uses: ministryofjustice/github-actions/setup-container-structure-test@ccf9e3a4a828df1ec741f6c8e6ed9d0acaef3490 # v18.5.0 | |
- name: Container Structure Test | |
id: container_structure_test | |
shell: bash | |
env: | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
make test | |
package: | |
name: Package | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Package | |
id: package | |
shell: bash | |
env: | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
make package |