Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-drone-signature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
fi
- name: Post PR message about fork
if: steps.check-if-fork.outputs.isFork == true && github.event_name == 'pull_request'
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
github.issues.createComment({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-for-non-releasable-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
./release-please-config.json

- name: Check for non-releasable actions
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
with:
script: |
const fs = require('fs/promises');
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# `<actions>/<name>--sha`.
- name: tag major and minor versions
if: steps.release.outputs.releases_created == 'true'
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
env:
RELEASES: ${{ toJSON(steps.release.outputs) }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- id: get-job-workflow-ref
name: Fetch the job_workflow_ref of this run
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
const { jwtVerify, createRemoteJWKSet } = require('jose');
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
- name: Fetch Zizmor Config
id: fetch-config
if: steps.cache-config.outputs.cache-hit != 'true' && env.DEFAULT_ZIZMOR_CONFIG_DOWNLOADED
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
env:
OWNER: ${{ needs.job-workflow-ref.outputs.owner }}
REPO: ${{ needs.job-workflow-ref.outputs.repo }}
Expand Down
4 changes: 2 additions & 2 deletions actions/create-github-app-token/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ runs:
echo "ref_sha=$REF_SHA" >> "$GITHUB_OUTPUT"

- id: get-github-jwt-token
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
env:
VAULT_INSTANCE: ${{ inputs.vault_instance }}
with:
Expand All @@ -47,7 +47,7 @@ runs:
core.setOutput("github-jwt",jwt);

- id: get-github-jwt-auth-token
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
env:
VAULT_INSTANCE: ${{ inputs.vault_instance }}
with:
Expand Down
2 changes: 1 addition & 1 deletion actions/get-vault-secrets/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ runs:
REPO: ${{ github.repository }}

- id: get-github-jwt-token
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
env:
VAULT_INSTANCE: ${{ inputs.vault_instance }}
with:
Expand Down
Loading