Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/base-ci-goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:

- name: "[Nightly] Download built otelcol-contrib artifact from contrib repo"
if: inputs.distribution == 'otelcol-contrib' && inputs.nightly == true && matrix.GOARCH == 'amd64' && matrix.GOOS == 'linux'
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: collector-binaries-linux-amd64
repository: open-telemetry/opentelemetry-collector-contrib
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
platforms: arm64,ppc64le,linux/arm/v7,s390x,riscv64

- name: Download container image artifact
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: ${{ inputs.distribution }}-image-${{ needs.check-goreleaser.outputs.version }}-${{ matrix.GOOS }}-${{ matrix.GOARCH }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/base-package-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
package-tests:
name: Package Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
type: ${{ fromJSON(inputs.type) }}
Expand All @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Download built artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: linux-packages

Expand All @@ -36,7 +36,7 @@ jobs:

create-issue:
name: Create GitHub Issue
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [package-tests]
if: failure() && inputs.issue-on-failure == 'true'
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/base-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -210,21 +210,21 @@ jobs:
go-version: "~1.24"
check-latest: true

- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
if: runner.os == 'Windows'
with:
pattern: artifacts-${{ inputs.distribution }}-windows-*
path: distributions/${{ inputs.distribution }}/dist
merge-multiple: true

- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
if: runner.os != 'Windows'
with:
pattern: artifacts-${{ inputs.distribution }}-darwin-*
path: distributions/${{ inputs.distribution }}/dist
merge-multiple: true

- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
if: runner.os != 'Windows'
with:
pattern: artifacts-${{ inputs.distribution }}-linux-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msi-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Download built artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: msi-packages

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regression-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
check-goreleaser:
name: Check docker token
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Log into Docker.io using old token
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
Expand Down
Loading