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

chore(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #4010

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
10 changes: 5 additions & 5 deletions .github/workflows/deploy-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
with:
path: dist/${{ matrix.GOOS }}
key: ${{ matrix.GOOS }}-${{ env.sha_short }}
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
if: steps.cache.outputs.cache-hit != 'true'
with:
name: tracetest-web
Expand Down Expand Up @@ -132,19 +132,19 @@ jobs:
- shell: bash
run: |
echo "sha_short=$(git rev-parse --short=8 $GITHUB_SHA)" >> $GITHUB_ENV
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
path: dist/linux
name: dist-linux
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
path: dist/darwin
name: dist-darwin
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
path: dist/windows
name: dist-windows
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-web
path: web/build/
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-dist
path: dist/
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-dist
path: dist/
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-dist
path: dist/
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-dist
path: dist/
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
go-version-file: "go.mod"
cache: true
cache-dependency-path: "go.mod"
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-dist
path: dist/
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
# go-version-file: "go.mod"
# cache: true
# cache-dependency-path: "go.mod"
# - uses: actions/download-artifact@v3
# - uses: actions/download-artifact@v4.1.7
# with:
# name: tracetest-dist
# path: dist/
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: cd web/; npm ci

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
with:
go-version-file: "go.mod"

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-web
path: web/build/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
cache: true
cache-dependency-path: "go.mod"

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: tracetest-web
path: web/build/
Expand Down
Loading