Reverting to 3.10 Docker to support syntax etc - can't get distroless… #7
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: Integration Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Version and Update Item | |
id: version-update-item | |
uses: provena/version-update-item-action@main | |
with: | |
offline_token: ${{ secrets.PROVENA_OFFLINE_TOKEN }} | |
domain: "dev.rrap-is.com" | |
realm_name: "rrap" | |
item_id: "10378.1/1925572" | |
version_reason: "Testing GitHub Action which can version and update items" | |
update_reason: "Updating git custom attributes, as well as source URL." | |
attribute_updates: | | |
{ | |
"user_metadata": { | |
"git_hash": "${{ github.sha }}", | |
"git_branch": "${{ github.ref_name }}", | |
"git_release": "${{ github.ref_type == 'tag' && github.ref_name || '' }}" | |
}, | |
"source_url": "https://github.com/${{ github.repository }}" | |
} |