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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
actionlint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Add GOPATH bin to PATH
run: echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
Expand All @@ -25,7 +25,7 @@ jobs:
shellcheck:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Run shellcheck
uses: ludeeus/action-shellcheck@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-task-prune-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
ecr:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
2 changes: 1 addition & 1 deletion .github/workflows/workflow-build-container-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
}}
runs-on: ${{ inputs.runs-on }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Workflow URL for sumologic-otel-collector
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-determine-build-info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
workflow-id: ${{ steps.workflow.outputs.id }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

# Determine the latest successful run of the "Dev builds" workflow for
# the "main" branch. This is skipped if inputs.workflow_id is set.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-determine-run-info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
otc-sumo-version: ${{ steps.set-versions.outputs.otc-sumo-version }}
otc-version: ${{ steps.set-versions.outputs.otc-version }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Output Workflow ID
run: echo ::notice title=Workflow ID::${{ inputs.workflow-id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
env:
MAKEFLAGS: --no-print-directory
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Add GOPATH bin to PATH
run: echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-push-container-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Push - ${{ inputs.target }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up QEMU
uses: docker/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-rollback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
MAKEFLAGS: --no-print-directory
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Add GOPATH bin to PATH
run: echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
Expand Down
Loading