Skip to content

Update mvnHash (again) #29

Update mvnHash (again)

Update mvnHash (again) #29

Workflow file for this run

name: 'Update dependencies'
on:
push:
branches:
- '_update-deps/runtimeverification/scala-kore'
workflow_dispatch:
# Stop in progress workflows on the same branch and same workflow to use latest committed code
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
update-versions:
name: 'Update scala-kore version'
runs-on: ubuntu-latest
steps:
- name: 'Check out code'
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.JENKINS_GITHUB_PAT }}
- name: 'Configure GitHub user'
run: |
git config user.name devops
git config user.email [email protected]
- name: 'Update scala-kore release tag'
run: ./scripts/update-scala-kore.sh
- name: 'Push updates'
run: git push