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
4 changes: 2 additions & 2 deletions .github/workflows/codeowners-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
id-token: write
if: ${{ github.event_name == 'pull_request' && needs.filter-changes.outputs.codeowners == 'true' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1
persist-credentials: false

- name: Setup GitHub Token
id: gh-token
uses: smartcontractkit/.github/actions/setup-github-token@main
uses: smartcontractkit/.github/actions/setup-github-token@setup-github-token/v1
with:
aws-role-arn: ${{ secrets.GATI_CODEOWNERS_IAM_ARN }}
aws-lambda-url: ${{ secrets.GATI_CODEOWNERS_LAMBDA_URL }}
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/gha-workflow-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1
persist-credentials: false

- name: Run gha-workflow-validator action
uses: smartcontractkit/.github/actions/gha-workflow-validator@gha-workflow-validator/0.5.3
uses: smartcontractkit/.github/actions/gha-workflow-validator@gha-workflow-validator/v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
# No longer needed - previously used when versions of actions/cache were being deprecated
validate-actions-cache-version: "false"
2 changes: 1 addition & 1 deletion .github/workflows/go-mod-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# Skip on merge group events
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Validate go.mod
uses: smartcontractkit/.github/apps/go-mod-validator@go-mod-validator/v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-draft-nudge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout org workflows
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: smartcontractkit/${{ env.PATH_TO_REPO_SELF}}
path: ${{ env.PATH_TO_REPO_SELF}}
Expand Down
Loading