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/build_and_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout the source code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version-file: "go.mod"
Expand All @@ -33,7 +33,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version-file: "go.mod"
Expand All @@ -46,7 +46,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version-file: "go.mod"
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version-file: "go.mod"
Expand All @@ -89,7 +89,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version-file: "go.mod"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
permissions:
contents: read

on:

Check warning on line 17 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

17:1 [truthy] truthy value should be one of [false, true]
push:
branches: [ main ]

Check failure on line 19 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

19:21 [brackets] too many spaces inside brackets

Check failure on line 19 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

19:16 [brackets] too many spaces inside brackets
paths-ignore:
- '**/*.md'
- '**/*.txt'
- '**/*.yaml'
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]

Check failure on line 26 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

26:21 [brackets] too many spaces inside brackets

Check failure on line 26 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

26:16 [brackets] too many spaces inside brackets
paths-ignore:
- '**/*.md'
- '**/*.txt'
Expand All @@ -43,26 +43,26 @@
strategy:
fail-fast: false
matrix:
language: [ 'go' ]

Check failure on line 46 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

46:25 [brackets] too many spaces inside brackets

Check failure on line 46 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

46:20 [brackets] too many spaces inside brackets
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Harden Runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2

Check warning on line 52 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

52:82 [comments] too few spaces before comment: expected 2
with:
egress-policy: audit

- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

Check warning on line 57 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

57:71 [comments] too few spaces before comment: expected 2
- name: Setup go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v5

Check warning on line 59 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

59:71 [comments] too few spaces before comment: expected 2
with:
go-version-file: go.mod

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2

Check warning on line 65 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

65:80 [comments] too few spaces before comment: expected 2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -70,7 +70,7 @@
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0

Check warning on line 73 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / Linting

73:68 [comments] too few spaces before comment: expected 2
with:
path: |
~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Source repository: https://github.com/actions/dependency-review-action
name: 'Dependency Review'
on: [pull_request]

Check warning on line 10 in .github/workflows/dependency-review.yaml

View workflow job for this annotation

GitHub Actions / Linting

10:1 [truthy] truthy value should be one of [false, true]

permissions:
contents: read
Expand All @@ -22,7 +22,7 @@
egress-policy: audit

- name: 'Checkout Repository'
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: 'Dependency Review'
uses: actions/dependency-review-action@40c09b7dc99638e5ddb0bfd91c1673effc064d8a # v4.8.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# run at least once every 2 months to prevent the coverage artifact from expiring
schedule:
- cron: '14 3 2 */2 *'
workflow_dispatch:

Check failure on line 14 in .github/workflows/go-coverage.yaml

View workflow job for this annotation

GitHub Actions / Linting

14:21 [empty-values] empty value in block mapping

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -35,7 +35,7 @@
egress-policy: audit

- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
path: ${{ github.workspace }}/src/github.com/tektoncd/pruner

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

steps:
- name: Check out our repo
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

- name: Set up Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
Expand All @@ -42,9 +42,9 @@
version: tip

- name: Create kind cluster
run: |

Check failure on line 45 in .github/workflows/reusable-e2e.yaml

View workflow job for this annotation

GitHub Actions / Linting

45:13 [trailing-spaces] trailing spaces
kind create cluster --config "./test/kind-cluster.yaml" --wait=60s
while ! kubectl get nodes

Check failure on line 47 in .github/workflows/reusable-e2e.yaml

View workflow job for this annotation

GitHub Actions / Linting

47:34 [trailing-spaces] trailing spaces
do
echo "waiting for kind cluster to be ready"
sleep 2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/woke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
with:
egress-policy: audit
- name: 'Checkout'
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

Check failure on line 19 in .github/workflows/woke.yaml

View workflow job for this annotation

GitHub Actions / Linting

19:1 [trailing-spaces] trailing spaces
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@70069877f29101175ed2b055d210fe8b1d54d7d7 # v45.0.7
Expand Down
Loading