Skip to content
Open
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
24 changes: 12 additions & 12 deletions docs/MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download All Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: my-artifact
path: my-artifact
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Create a File
run: echo "hello from ${{ matrix.runs-on }}" > file-${{ matrix.runs-on }}.txt
- name: Upload Artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v4
with:
- name: my-artifact
Expand All @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download All Artifacts
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@v4
with:
- name: my-artifact
Expand All @@ -96,7 +96,7 @@ jobs:
- name: Create a file
run: echo "hello world" > my-file.txt
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: my-artifact # NOTE: same artifact name
path: my-file.txt
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Create a different file
run: echo "goodbye world" > my-file.txt
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: my-artifact # NOTE: same artifact name
path: my-file.txt
Expand All @@ -125,7 +125,7 @@ jobs:
- name: Create a file
run: echo "hello world" > my-file.txt
- name: Upload Artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v4
with:
name: my-artifact # NOTE: same artifact name
Expand All @@ -137,7 +137,7 @@ jobs:
- name: Create a different file
run: echo "goodbye world" > my-file.txt
- name: Upload Artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v4
with:
name: my-artifact # NOTE: same artifact name
Expand All @@ -162,7 +162,7 @@ jobs:
- name: Create a File
run: echo "hello from ${{ matrix.runs-on }}" > file-${{ matrix.runs-on }}.txt
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: all-my-files # NOTE: same artifact name
path: file-${{ matrix.runs-on }}.txt
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
- name: Create a File
run: echo "hello from ${{ matrix.runs-on }}" > file-${{ matrix.runs-on }}.txt
- name: Upload Artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v4
with:
- name: all-my-files
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
- name: Create a Hidden File
run: echo "hello from a hidden file" > .hidden-file.txt
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: .hidden-file.txt
```
Expand All @@ -240,9 +240,9 @@ jobs:
- name: Create a Hidden File
run: echo "hello from a hidden file" > .hidden-file.txt
- name: Upload Artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v4
with:
path: .hidden-file.txt
+ include-hidden-files: true
```
```