Skip to content

Update github/codeql-action action to v4.37.2 #72

Update github/codeql-action action to v4.37.2

Update github/codeql-action action to v4.37.2 #72

Workflow file for this run

on:
push:
branches:
- main
- renovate/*
permissions: {}
jobs:
test-commands:
runs-on: ubuntu-latest
name: test commands
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Create dummy changelog file
run: touch CHANGELOG.md
- name: Run changelog init
uses: ./
id: init
with:
args: init --output CHANGELOG.md --compare-url https://example.com/abcdef...HEAD
- name: Run changelog release
uses: ./
id: release
with:
args: release --output CHANGELOG.md 1.0.0
- name: Run changelog latest
uses: ./
id: latest
with:
args: latest
- run: echo "${RESULT}"
env:
RESULT: ${{ steps.latest.outputs.result }}
- name: Run changelog show
uses: ./
id: show
with:
args: show 0.1.0
- run: echo "${RESULT}"
env:
result: ${{ steps.latest.outputs.result }}