Skip to content

Commit 4b7c0c4

Browse files
authoredOct 27, 2022
Merge pull request #13 from cytopia/fix-deprecations
Fix deprecations
2 parents a873aad + 4ba748c commit 4b7c0c4

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed
 

‎.github/workflows/release-drafter.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Release Drafter
23

34
on:
@@ -15,4 +16,4 @@ jobs:
1516
with:
1617
publish: true
1718
env:
18-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
GITHUB_TOKEN: ${{ secrets.RELEASE_DRAFTER_TOKEN }}

‎README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,21 @@ updates:
9191

9292
## :octocat: [cytopia](https://github.com/cytopia) GitHub Actions
9393

94-
| Name | Description |
95-
|------------------------------|-------------|
96-
| [docker-tag-action] | Determines Docker tags based on git branch, commit or git tag |
97-
| [git-ref-matrix-action] | Create stringified JSON list of git refs to be used as a build matrix |
98-
| [shell-command-retry-action] | Retries shell commands to avoid failing pipelines due to network issues |
94+
| Name | Description |
95+
|----------------------------------|-------------|
96+
| [docker-tag-action] | Determines Docker tags based on git branch, commit or git tag |
97+
| [git-ref-matrix-action] | Create stringified JSON list of git refs to be used as a build matrix |
98+
| [shell-command-retry-action] | Retries shell commands to avoid failing pipelines due to network issues |
99+
| [upload-artifact-verify-action] | Upload artifact and verifies it by downloading it again |
100+
| [upload-artifact-retry-action] | Retries `upload-artifact-verify-action` |
101+
| [download-artifact-retry-action] | Download artifact with retry functionality |
99102

100103
[docker-tag-action]: https://github.com/cytopia/docker-tag-action
101104
[git-ref-matrix-action]: https://github.com/cytopia/git-ref-matrix-action
102105
[shell-command-retry-action]: https://github.com/cytopia/shell-command-retry-action
106+
[upload-artifact-verify-action]: https://github.com/cytopia/upload-artifact-verify-action
107+
[upload-artifact-retry-action]: https://github.com/cytopia/upload-artifact-retry-action
108+
[download-artifact-retry-action]: https://github.com/cytopia/download-artifact-retry-action
103109

104110

105111
## :page_facing_up: License

‎action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ runs:
5757
###
5858
### Output matrix
5959
###
60-
echo "::set-output name=matrix::[]"
61-
echo "::set-output name=has_refs::false"
60+
echo "matrix=[]" >> $GITHUB_OUTPUT
61+
echo "has_refs=false" >> $GITHUB_OUTPUT
6262
echo "matrix=[]"
6363
echo "has_refs=false"
6464
else
@@ -121,7 +121,7 @@ runs:
121121
###
122122
### Set final output for 'matrix'
123123
###
124-
echo "::set-output name=matrix::${JSON}"
124+
echo "matrix=${JSON}" >> $GITHUB_OUTPUT
125125
126126
###
127127
### Set 'has_refs'
@@ -131,7 +131,7 @@ runs:
131131
else
132132
HAS_REFS="true"
133133
fi
134-
echo "::set-output name=has_refs::${HAS_REFS}"
134+
echo "has_refs=${HAS_REFS}" >> $GITHUB_OUTPUT
135135
136136
###
137137
### Output matrix

0 commit comments

Comments
 (0)
Please sign in to comment.