Skip to content

Commit

Permalink
Revert "Updated deprecated GitHub Actions versions."
Browse files Browse the repository at this point in the history
This reverts commit 4b635e3.
  • Loading branch information
orbitalquark committed Jan 31, 2025
1 parent 1f7f93b commit f358389
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
version: ${{ steps.build.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v2
- name: Git init if necessary
shell: bash
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
git config --global user.name "none"
git commit -m 'none'
- name: Checkout textadept-build dependencies
uses: actions/checkout@v4
uses: actions/checkout@v2
with:
repository: orbitalquark/textadept-build
path: textadept-build
Expand All @@ -50,7 +50,7 @@ jobs:
fi
echo "::set-output name=version::$version"
- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v2
with:
name: artifacts
path: |
Expand All @@ -61,7 +61,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v2
- name: Tag
run: |
git tag scintillua_${{ needs.build.outputs.version }}
Expand All @@ -71,7 +71,7 @@ jobs:
needs: [build, tag]
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v2
with:
name: artifacts
- name: Create release log
Expand Down

0 comments on commit f358389

Please sign in to comment.