We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a9e39e + d2dc2a2 commit 4644bd7Copy full SHA for 4644bd7
.github/workflows/gradle.yml
@@ -8,7 +8,7 @@ jobs:
8
runs-on: ubuntu-latest
9
10
steps:
11
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
12
with:
13
fetch-depth: 0
14
- name: Get Fetch Tags
@@ -24,9 +24,9 @@ jobs:
24
run: ./gradlew build
25
- name: Get Release Version
26
id: get_version
27
- run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet) && echo ::set-output name=VERSION::$VERSION
+ run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet) && echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
28
- name: Upload artifact zip
29
- uses: actions/upload-artifact@v1.0.0
+ uses: actions/upload-artifact@v4.0.0
30
31
# Artifact name
32
name: kubernetes-${{ steps.get_version.outputs.VERSION }}
0 commit comments