Skip to content

Commit

Permalink
Attempt to use minimum viable versions of actions in GitHub Actions.
Browse files Browse the repository at this point in the history
The container does not support newer libc6 versions that node actions are linked to.
  • Loading branch information
orbitalquark committed Jan 31, 2025
1 parent f358389 commit a16207a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
container: ghcr.io/orbitalquark/textadept-build:v1.0
outputs:
version: ${{ steps.build.outputs.version }}
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
fi
echo "::set-output name=version::$version"
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
Expand All @@ -61,7 +61,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- 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@v2
uses: actions/download-artifact@v4
with:
name: artifacts
- name: Create release log
Expand Down

0 comments on commit a16207a

Please sign in to comment.