Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/*-artifact from 3 to 4 #255

Merged
Merged
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/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
variant: [fpm-alpine, fpm, apache]
steps:
- name: Retrieve image artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
if: inputs.artifact
with:
name: ${{ matrix.variant }}-image
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: grep -oP '^ARG YOURLS_VERSION="\K[^"]+' ./images/yourls/Dockerfile.template > ./images/yourls/dist/yourls_version

- name: Save files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: context-files
path: ./images/yourls/dist
Expand All @@ -56,7 +56,7 @@ jobs:
variant: [fpm-alpine, fpm, apache]
steps:
- name: Retrieve context files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: context-files

Expand All @@ -75,7 +75,7 @@ jobs:
cache-to: type=gha,scope=${{ matrix.variant }},mode=max

- name: Save image
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.variant }}-image
path: /tmp/container-image.tar
Expand All @@ -96,7 +96,7 @@ jobs:
repository: docker-library/official-images

- name: Retrieve image artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.variant }}-image

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Generate stackbrew
run: bash ./bin/generate-stackbrew-library.sh > yourls

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: stackbrew
path: yourls
Expand All @@ -41,7 +41,7 @@ jobs:
with:
repository: docker-library/official-images

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: stackbrew
path: library
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
contents: write
steps:
- name: Retrieve context files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: context-files

Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
platform: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6,linux/386,linux/ppc64le,linux/s390x
steps:
- name: Retrieve context files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: context-files

Expand All @@ -104,7 +104,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Retrieve image artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
if: inputs.artifact
# if: ${{ inputs.artifact && matrix.platform == 'linux/amd64' }}
with:
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
# - fpm-alpine
# steps:
# - name: Download digests
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: digests
# path: /tmp/digests
Expand Down