Skip to content

Commit

Permalink
workflow: bump all actions
Browse files Browse the repository at this point in the history
actions/checkout@v1 -> v4
actions/upload-artifact@v2 -> v4
actions/download-artifact@v2 -> v4
  • Loading branch information
lifehackerhansol committed May 23, 2024
1 parent db933ce commit e5cece3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
commit_message: ${{ steps.build.outputs.commit_message }}
steps:
- name: Checkout repo
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Install tools
run: |
sudo apt-get update
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
echo ::set-output name=commit_subject::$(git log -1 "$GITHUB_SHA" --pretty="%s")
echo ::set-output name=commit_message::$(git log -1 "$GITHUB_SHA" --pretty="%b")
- name: Publish build to GH Actions
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: ~/artifacts/*
name: build
Expand All @@ -74,7 +74,7 @@ jobs:
current_date: ${{ steps.commit.outputs.current_date }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build
path: build
Expand Down

0 comments on commit e5cece3

Please sign in to comment.