Skip to content

Commit

Permalink
Update actions/upload-artifacts and actions/checkout from v2 to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
AyHa1810 authored Dec 29, 2022
1 parent 006d691 commit 3e73e03
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/debian-rootfs-github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup timezone
uses: zcong1993/setup-timezone@master
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
run: sudo tar -cpvzf debian-rootfs-${{ steps.current-time.outputs.formattedTime }}.tar.gz debian-rootfs-${{ steps.current-time.outputs.formattedTime }}

- name: Upload debian-rootfs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: debian-rootfs-${{ steps.current-time.outputs.formattedTime }}
path: debian-rootfs-${{ steps.current-time.outputs.formattedTime }}.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/debian-rootfs-setup-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Runs a single command using the runners shell
- name: Install dependencies
Expand All @@ -63,7 +63,7 @@ jobs:
#echo "OUTPUT=$(echo $OUTPUT)" >> $GITHUB_ENV
- name: Upload debian-rootfs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: debian-rootfs-${{ matrix.arch }}
path: ./build/${{ matrix.arch }}/*.tar.gz
4 changes: 2 additions & 2 deletions .github/workflows/debian-rootfs-wsl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup timezone
uses: zcong1993/setup-timezone@master
Expand All @@ -54,7 +54,7 @@ jobs:
sudo tar -cpvf debian-rootfs-${{ steps.current-time.outputs.formattedTime }}.tar -C debian-rootfs-${{ steps.current-time.outputs.formattedTime }} ./
- name: Upload debian-rootfs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: debian-rootfs-${{ steps.current-time.outputs.formattedTime }}
path: debian-rootfs-${{ steps.current-time.outputs.formattedTime }}.tar
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Runs a single command using the runners shell
- name: Install dependencies
Expand All @@ -38,7 +38,7 @@ jobs:
sudo bash -x setup-debootstrap.sh --arch ${{ matrix.arch }}
- name: Upload debian-rootfs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: debian-rootfs-${{ matrix.arch }}
path: ./build/${{ matrix.arch }}/*.tar.gz
Expand Down

0 comments on commit 3e73e03

Please sign in to comment.