Skip to content

Commit

Permalink
Merge pull request kuskoman#221 from kuskoman/update-artifact-actions
Browse files Browse the repository at this point in the history
Update actions for managing artifacts from @V3 to @v4
  • Loading branch information
kuskoman authored Jan 11, 2024
2 parents 1ee1839 + ee53f7d commit 579bf26
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/go-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
VERSION: ${{ github.ref }}

- name: Upload Linux binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logstash-exporter-linux
path: out/main-linux
Expand All @@ -184,7 +184,7 @@ jobs:
VERSION: ${{ github.ref }}

- name: Upload Linux ARM binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logstash-exporter-linux-arm
path: out/main-linux-arm
Expand All @@ -209,7 +209,7 @@ jobs:
VERSION: ${{ github.ref }}

- name: Upload Mac binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logstash-exporter-darwin
path: out/main-darwin
Expand All @@ -234,7 +234,7 @@ jobs:
VERSION: ${{ github.ref }}

- name: Upload Windows binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logstash-exporter-windows
path: out/main-windows
Expand All @@ -254,7 +254,7 @@ jobs:
run: docker save logstash-exporter:latest | gzip > logstash-exporter.tar.gz

- name: Upload Docker image as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logstash-exporter-docker-image
path: logstash-exporter.tar.gz
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
uses: actions/checkout@v4

- name: Download Docker image
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: logstash-exporter-docker-image
path: .helm/files
Expand Down Expand Up @@ -408,7 +408,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Download binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: logstash-exporter-${{ matrix.binary }}
- name: Generate sha256 checksum
Expand Down

0 comments on commit 579bf26

Please sign in to comment.