build(deps): bump actions/checkout from 4.1.7 to 4.2.2 #109
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: tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.repository }}/${{ github.workflow }}/${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
flow: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: '0' | |
- name: setup-git | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "actions@github.com" | |
- name: simple-compose-service-updates | |
uses: ./ | |
with: | |
default_branch: 'main' | |
skips: 'postgresql-repmgr:15,postgresql-repmgr:16' # skip 15 should show 16 | |
prs: 'skip' # todo how do we test the prs feature? | |
ignore: 'alertmanager' | |
env: | |
GH_TOKEN: ${{ github.token }} # required |