Skip to content
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

Chore(ci): Pin 3rd party actions by hashes #495

Merged
merged 1 commit into from
Jan 8, 2025
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/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
go-version-file: go.mod
- run: |
echo "YQ_VERSION=$(yq -r '.golangci-lint' < .tools_versions.yaml)" >> $GITHUB_ENV
- uses: golangci/golangci-lint-action@v6
- uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
with:
# actions/setup-go@v5 introduced automatic cache handling so skip cache here
skip-cache: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-test-enterprise-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# This will set KONG_LINCENSE_DATA environment variable.
- uses: Kong/kong-license@master
- uses: Kong/kong-license@c4decf08584f84ff8fe8e7cd3c463e0192f6111b
id: license_step
with:
password: ${{ secrets.PULP_PASSWORD }}
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Run tests
run: make test-coverage-enterprise
- name: Upload Code Coverage
uses: codecov/[email protected]
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
continue-on-error: true
with:
name: codecov-enterprise-nightly
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-test-enterprise.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
# to override:
# Warning: Skip output 'license' since it may contain secret.
# on Github Actions when setting a job output.
- uses: Kong/kong-license@master
- uses: Kong/kong-license@c4decf08584f84ff8fe8e7cd3c463e0192f6111b
id: license_step
with:
password: ${{ secrets.PULP_PASSWORD }}
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Run tests
run: make test-coverage-enterprise
- name: Upload Code Coverage
uses: codecov/[email protected]
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
continue-on-error: true
with:
name: codecov-${{ matrix.kong_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Run tests
run: make test-coverage
- name: Upload Code Coverage
uses: codecov/[email protected]
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
continue-on-error: true
with:
name: codecov-nightly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Run tests
run: make test-coverage
- name: Upload Code Coverage
uses: codecov/[email protected]
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
continue-on-error: true
with:
name: codecov-${{ matrix.kong_version }}
Expand Down
Loading