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
4 changes: 2 additions & 2 deletions .github/workflows/_static_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
name: Run all static analysis checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
# Checkout to coreint-automation repo for using .golangci.yml in golangci-lint-action
- name: Checkout coreint-automation repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: newrelic/coreint-automation
ref: v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_test_build_fake_prerelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Test binary compilation for all platforms:arch
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: |
git tag "$TAG"
if [ -z "$GPG_PASSPHRASE" ]; then
Expand All @@ -51,7 +51,7 @@ jobs:
goarch: ${{ fromJSON(inputs.goarch_matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- shell: bash
run: git tag "$TAG"
- name: Download artifact from previous job
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test_build_nix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
env:
TAG: "v0.0.0"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build all platforms:arch
run: make ci/build
2 changes: 1 addition & 1 deletion .github/workflows/_test_integration_nix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test_nix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ jobs:
name: Run unit tests on *Nix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Unit tests
run: make ci/test
2 changes: 1 addition & 1 deletion .github/workflows/_test_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/block.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# Allows github.token to push commit
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ env.BRANCH }}
- name: remove unblock file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_publish_builder_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.BRANCH }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_push_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Renovatebot config validator
run: npm install --global renovate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovatebot_config_linter.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@v5

- name: Install Renovatebot config validator
run: npm install --global renovate
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable_image_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
- name: Install Go
Expand All @@ -114,7 +114,7 @@ jobs:
matrix:
arch: [arm64, amd64]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand All @@ -139,7 +139,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: setup Go
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
needs: [release-integration]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- if: ${{ github.event.release.prerelease }}
name: Reflect failure in pre-release title
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
TAG_SUFFIX: "-${{ inputs.docker_tag }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: ${{ inputs.fetch_depth }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable_pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
if: ${{ always() && !cancelled() && !failure() }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Pre release
env:
GPG_MAIL: '[email protected]'
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
goarch: ${{ fromJSON(inputs.windows_goarch_matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get PFX certificate from GH secrets
shell: bash
env:
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
packageLocation: repo
stagingRepo: true
upgrade: false
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Update pre-release title
env:
GH_TOKEN: "${{ secrets.COREINT_BOT_TOKEN }}"
Expand All @@ -295,7 +295,7 @@ jobs:
needs: [test-nix, test-windows, test-integration-nix, build-artifacts, build-win-packages, publish]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Reflect failure in release title
env:
GH_TOKEN: "${{ secrets.COREINT_BOT_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_repolinter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,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@v5
- 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/reusable_security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_trigger_prerelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
echo This workflow should only be triggered for the '${{ github.event.repository.default_branch }}' branch
exit 1
fi
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
ref: ${{ github.event.repository.default_branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unblock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# Allows github.token to push commit
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ env.BRANCH }}
- name: Create unblock file
Expand Down
Loading