Skip to content

Update dependencies for SimpleSAMLphp 2.2 #139

Update dependencies for SimpleSAMLphp 2.2

Update dependencies for SimpleSAMLphp 2.2 #139

---
name: 'Update dependencies'
on:
workflow_dispatch:
schedule:
# Run every week on Sunday at 00:00 AM UTC
- cron: '0 0 * * 0'
jobs:
build:
name: 'Update dependencies'
runs-on: [ubuntu-latest]
steps:
- name: 'Run developer-tools update (2.0)'
uses: actions/github-script@v7
with:
# Token has to be generated on a user account that controls the remote repository.
# The _only_ scope to select is "Access public repositories", nothing more.
github-token: "${{ secrets.PAT_TOKEN }}"
debug: true
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'simplesamlphp',
repo: 'simplesamlphp-assets-base',
workflow_id: 'update-dependencies.yml',
ref: 'release-2.0'
})
- name: 'Run developer-tools update (2.1)'
uses: actions/github-script@v7
with:
# Token has to be generated on a user account that controls the remote repository.
# The _only_ scope to select is "Access public repositories", nothing more.
github-token: "${{ secrets.PAT_TOKEN }}"
debug: true
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'simplesamlphp',
repo: 'simplesamlphp-assets-base',
workflow_id: 'update-dependencies.yml',
ref: 'release-2.1'
})
- name: 'Run developer-tools update (2.2)'
uses: actions/github-script@v7
with:
# Token has to be generated on a user account that controls the remote repository.
# The _only_ scope to select is "Access public repositories", nothing more.
github-token: "${{ secrets.PAT_TOKEN }}"
debug: true
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'simplesamlphp',
repo: 'simplesamlphp-assets-base',
workflow_id: 'update-dependencies.yml',
ref: 'release-2.2'
})