Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/agent-control-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
group: ["infra", "apm", "dynamic", "custom-repo", "proxy"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: newrelic/newrelic-agent-control

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-generated-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint_test_charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
Expand All @@ -24,7 +24,7 @@ jobs:
bundle-changed: ${{ steps.changed.outputs.bundle }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
needs: [ lint-test ]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
if: ${{ needs.lint-test.outputs.bundle-changed == 'true' }}
needs: [ lint-test ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: azure/setup-helm@v4
with:
version: 'v3.19.2'
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
if: ${{ needs.lint-test.outputs.bundle-changed == 'true' }}
needs: [ lint-test ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: azure/setup-helm@v4
with:
version: 'v3.19.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nr-k8s-otel-e2e-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# If the environment is broken, this job could time out since the default timeout for tilt ci is 30m.
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Minikube
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nr-k8s-otel-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# If the environment is broken, this job could time out since the default timeout for tilt ci is 30m.
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Setup Minikube
uses: manusa/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nr-k8s-otel-post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Create release notes
env:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/post-release-nri-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
announcement: ${{ steps.slack-announcement.outputs.announcement }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Helm
uses: azure/setup-helm@v4
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
K8S_FOLDER: src/content/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes
steps:
- name: Checkout `nri-kubernetes` chart
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: 'newrelic/nri-kubernetes'
sparse-checkout: |
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
} >> "$GITHUB_ENV"

- name: Checkout docs-website
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: 'newrelic/docs-website'
# Token used to run authenticated git commands
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout `nri-bundle` chart
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: 'newrelic/helm-charts'
sparse-checkout: |
Expand All @@ -187,7 +187,7 @@ jobs:
echo "version=${version}" >> "$GITHUB_ENV"

- name: Checkout eks-anywhere-addons
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: 'aws-samples/eks-anywhere-addons'
# Token used to run authenticated git commands
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: gh-pages
- name: Download remote index file and check equality
Expand All @@ -38,7 +38,7 @@ jobs:
needs: [ validate-gh-pages-index ]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
# chart-releaser need all the history of the repo to see what changed in the file tree and evaluate which charts need to be released
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/repolinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
return data.data && data.data.default_branch === context.ref.split('/').slice(-1)[0]
- name: Checkout Self
if: ${{ steps.default-branch.outputs.result == 'true' }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Run Repolinter
if: ${{ steps.default-branch.outputs.result == 'true' }}
uses: newrelic/repolinter-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-renovate-configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Renovate config validator
run: npm install --global renovate
Expand Down
Loading