mirror of
https://github.com/containers/podman.git
synced 2025-11-29 01:28:22 +08:00
Merge pull request #27361 from containers/renovate/major-github-artifact-actions
[skip-ci] Update GitHub Artifact Actions (major)
This commit is contained in:
2
.github/workflows/check_cirrus_cron.yml
vendored
2
.github/workflows/check_cirrus_cron.yml
vendored
@@ -73,7 +73,7 @@ jobs:
|
|||||||
body: file://./artifacts/email_body.txt
|
body: file://./artifacts/email_body.txt
|
||||||
|
|
||||||
- if: always()
|
- if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: ${{ github.job }}_artifacts
|
name: ${{ github.job }}_artifacts
|
||||||
path: artifacts/*
|
path: artifacts/*
|
||||||
|
|||||||
2
.github/workflows/mac-pkg.yml
vendored
2
.github/workflows/mac-pkg.yml
vendored
@@ -151,7 +151,7 @@ jobs:
|
|||||||
steps.check.outputs.buildarm == 'true' ||
|
steps.check.outputs.buildarm == 'true' ||
|
||||||
steps.check.outputs.builduniversal == 'true' ||
|
steps.check.outputs.builduniversal == 'true' ||
|
||||||
steps.actual_dryrun.outputs.dryrun == 'true'
|
steps.actual_dryrun.outputs.dryrun == 'true'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: installers
|
name: installers
|
||||||
path: |
|
path: |
|
||||||
|
|||||||
2
.github/workflows/release-artifacts.yml
vendored
2
.github/workflows/release-artifacts.yml
vendored
@@ -173,7 +173,7 @@ jobs:
|
|||||||
if: >-
|
if: >-
|
||||||
steps.check.outputs.buildartifacts == 'true' ||
|
steps.check.outputs.buildartifacts == 'true' ||
|
||||||
steps.actual_dryrun.outputs.dryrun == 'true'
|
steps.actual_dryrun.outputs.dryrun == 'true'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: artifacts
|
name: artifacts
|
||||||
path: |
|
path: |
|
||||||
|
|||||||
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@@ -80,7 +80,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
make release-artifacts
|
make release-artifacts
|
||||||
- name: Upload to Actions as artifact
|
- name: Upload to Actions as artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: release-artifacts
|
name: release-artifacts
|
||||||
path: release/*
|
path: release/*
|
||||||
@@ -136,7 +136,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
make ARCH=universal notarize &> /dev/null
|
make ARCH=universal notarize &> /dev/null
|
||||||
- name: Artifact
|
- name: Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: mac-installers
|
name: mac-installers
|
||||||
path: |
|
path: |
|
||||||
@@ -163,7 +163,7 @@ jobs:
|
|||||||
- name: Checkout Podman
|
- name: Checkout Podman
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
- name: Download Windows zip artifact
|
- name: Download Windows zip artifact
|
||||||
uses: actions/download-artifact@v5
|
uses: actions/download-artifact@v6
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v6
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
@@ -230,13 +230,13 @@ jobs:
|
|||||||
Copy-Item -Path podman-${{steps.getversion.outputs.version}}-setup.exe -Destination podman-installer-windows-${{ matrix.arch }}.exe
|
Copy-Item -Path podman-${{steps.getversion.outputs.version}}-setup.exe -Destination podman-installer-windows-${{ matrix.arch }}.exe
|
||||||
Pop-Location
|
Pop-Location
|
||||||
- name: Upload the MSI
|
- name: Upload the MSI
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: win-msi-${{ matrix.arch }}
|
name: win-msi-${{ matrix.arch }}
|
||||||
path: |
|
path: |
|
||||||
.\contrib\win-installer\podman-installer-windows-${{ matrix.arch }}.msi
|
.\contrib\win-installer\podman-installer-windows-${{ matrix.arch }}.msi
|
||||||
- name: Upload the bundle (legacy)
|
- name: Upload the bundle (legacy)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: win-installer-${{ matrix.arch }}
|
name: win-installer-${{ matrix.arch }}
|
||||||
path: |
|
path: |
|
||||||
@@ -244,7 +244,7 @@ jobs:
|
|||||||
# For backwards compatibility, we also upload the amd64 windows
|
# For backwards compatibility, we also upload the amd64 windows
|
||||||
# installer using the old name
|
# installer using the old name
|
||||||
- name: Upload the bundle with the old name (legacy)
|
- name: Upload the bundle with the old name (legacy)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
if: ${{ matrix.arch == 'amd64' }}
|
if: ${{ matrix.arch == 'amd64' }}
|
||||||
with:
|
with:
|
||||||
name: win-installer
|
name: win-installer
|
||||||
@@ -281,7 +281,7 @@ jobs:
|
|||||||
- name: Display release notes
|
- name: Display release notes
|
||||||
run: cat $VERSION-release-notes.md
|
run: cat $VERSION-release-notes.md
|
||||||
- name: Download all artifacts
|
- name: Download all artifacts
|
||||||
uses: actions/download-artifact@v5
|
uses: actions/download-artifact@v6
|
||||||
- name: Show artifacts
|
- name: Show artifacts
|
||||||
run: |
|
run: |
|
||||||
mv win-installer/* release-artifacts
|
mv win-installer/* release-artifacts
|
||||||
|
|||||||
2
.github/workflows/upload-win-installer.yml
vendored
2
.github/workflows/upload-win-installer.yml
vendored
@@ -120,7 +120,7 @@ jobs:
|
|||||||
Exit $code
|
Exit $code
|
||||||
- name: Artifact
|
- name: Artifact
|
||||||
if: steps.check.outputs.already-exists != 'true' || steps.actual_dryrun.outputs.dryrun == 'true'
|
if: steps.check.outputs.already-exists != 'true' || steps.actual_dryrun.outputs.dryrun == 'true'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: installer
|
name: installer
|
||||||
path: |
|
path: |
|
||||||
|
|||||||
Reference in New Issue
Block a user