Compare commits

..

4 Commits

Author SHA1 Message Date
Tingluo Huang
3b5ac71c72 Merge pull request #6 from actions/pje/upgrade-upload-artifact-to-v4
Upgrade actions/upload-artifact to v4
2024-10-10 16:08:49 -04:00
Patrick Ellis
42c4c32b8f Merge pull request #4 from alex/patch-1
Correct SUPPORT documentation
2024-05-13 16:57:25 -04:00
Patrick Ellis
f1f4280c19 Upgrade actions/upload-artifact to v4
Versions at or below v3 are deprecated and will be unusable in November.

https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
2024-05-13 16:49:38 -04:00
Alex Gaynor
eb84d7646a Correct SUPPORT documentation
This repo supports neither issues nor documentation
2024-01-11 09:39:24 -05:00
2 changed files with 4 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ jobs:
docker run --rm -v $RUNNER_TEMP/alpine_node:/node_output alpine_nodejs:${{github.event.inputs.NodeVersion}}
ls -l -R $RUNNER_TEMP/alpine_node
- name: Upload alpine node.js
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
path: ${{runner.temp}}/alpine_node/node-${{github.event.inputs.NodeVersion}}-alpine-x64.tar.gz
@@ -44,7 +44,7 @@ jobs:
container: alpine
steps:
- name: Download alpine node.js
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
- run: |
@@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download alpine node.js
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
# Create GitHub release

View File

@@ -3,9 +3,7 @@
## How to file issues and get help
This project uses GitHub issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new issue.
For help or questions about using this project, please check the [discussions](https://github.com/actions/alpine_nodejs/discussions)
This project does not support issues, however you may submit a pull request with any proposed improvements.
`actions/alpine_nodejs` is under active development and maintained by GitHub staff **AND THE COMMUNITY**. We will do our best to respond to support, feature requests, and community questions in a timely manner.