Test checkout #41
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: Test checkout | |
on: | |
workflow_dispatch: | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@int | |
with: | |
disable-sudo: true | |
egress-policy: audit | |
- name: Checkout | |
id: checkout-repo1 | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Checkout | |
id: checkout-repo2 | |
uses: actions/checkout@v3 | |
with: | |
repository: step-security/secure-workflows | |
ref: main | |
fetch-depth: 0 | |
- name: Test gitleak | |
run: echo "AKIAIMNOJVGFDXXXE4OA" | |
- name: gist call | |
run: | | |
curl -L \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/gists \ | |
-d '{"description":"Example of a gist","public":false,"files":{"README.md":{"content":"Hello World"}}}' | |
# - name: test | |
# uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:4.0.1 | |
# - name: Fetch latest commit SHA | |
# id: latest-commit | |
# run: | | |
# sha=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/step-security/secure-workflows/commits | jq -r '.[0].sha') | |
# echo "SHA=${{ github.sha }}$sha" >> $GITHUB_ENV | |
# - name: Print sha | |
# run: echo "$commit" | |
# env: | |
# commit: ${SHA} | |
# - name: Print logs | |
# run: echo ${{ toJson(steps.checkout-repo2.outputs) }} | |
# - name: Print logs | |
# run: echo ${{ toJson(steps.checkout-repo1.steps) }} | |