Skip to content

Commit 32301d3

Browse files
authored
Merge pull request #501 from scala-steward/update/sbt-github-actions-0.18.0
Update sbt-github-actions to 0.18.0
2 parents 4d5686c + f1ec23a commit 32301d3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/clean.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
steps:
1919
- name: Delete artifacts
20+
shell: bash {0}
2021
run: |
2122
# Customize those three lines with your repository and credentials:
2223
REPO=${GITHUB_API_URL}/repos/${{ github.repository }}
@@ -25,7 +26,7 @@ jobs:
2526
ghapi() { curl --silent --location --user _:$GITHUB_TOKEN "$@"; }
2627
2728
# A temporary file which receives HTTP response headers.
28-
TMPFILE=/tmp/tmp.$$
29+
TMPFILE=$(mktemp)
2930
3031
# An associative array, key: artifact name, value: number of artifacts of that name.
3132
declare -A ARTCOUNT

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
99
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
1010
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
1111
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")
12-
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.17.0")
12+
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.18.0")

0 commit comments

Comments
 (0)