Skip to content

Bump tj-actions/changed-files from 44 to 46 in /.github/workflows in the github_actions group across 1 directory #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v46

- run: |
echo "id=$(git merge-base $GITHUB_EVENT_PULL_REQUEST_BASE_SHA $GITHUB_SHA)" >> $GITHUB_OUTPUT
Expand All @@ -55,7 +55,7 @@ jobs:

- name: Get changed files in the .github folder
id: changed-files-specific
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v46
with:
files: .github/**

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multi-job-rest-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
uses: tj-actions/changed-files@v46 # v46
- name: List all changed files
run: echo '${{ steps.changed-files.outputs.all_changed_files }}'

Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/pinact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pinact

permissions:
contents: write
pull-requests: write

on:
pull_request: {}

jobs:
pinact:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false

- name: Pin actions
uses: suzuki-shunsuke/pinact-action@4eb88bc57cde1d55d18615b1f8ccd7216269e6d2 # v0.2.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v46

- name: Show output
run: |
Expand All @@ -40,7 +40,7 @@ jobs:

- name: Get changed files in the .github folder
id: changed-files-specific
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v46
with:
files: .github/**

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v46
with:
base_sha: ${{ steps.get-tag.outputs.previous_tag }}
sha: ${{ github.event.workflow_run.head_branch }}
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v46
with:
base_sha: ${{ steps.get-tag.outputs.previous_tag }}
sha: ${{ github.event.workflow_run.head_branch }}
Expand Down
Loading