-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Ping GH actions to a GitSHA (#199)
- Loading branch information
1 parent
4910dfd
commit 73aa2b6
Showing
10 changed files
with
64 additions
and
62 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
CI: "true" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set git config safe.directory | ||
|
@@ -20,7 +20,7 @@ jobs: | |
git config user.name "github-actions" | ||
git config user.email "[email protected]" | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | ||
with: | ||
node-version: 16.14.0 | ||
- name: Install dependencies | ||
|
@@ -31,7 +31,7 @@ jobs: | |
run: cd dist && rm -rf submodules/ && getfacl -R . > permissions-backup.acl | ||
continue-on-error: true | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 | ||
with: | ||
name: build-artifact | ||
path: dist | ||
|
@@ -43,11 +43,11 @@ jobs: | |
contents: read | ||
issues: write | ||
steps: | ||
- uses: actions/setup-node@v4 | ||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | ||
with: | ||
node-version: 16.14.0 | ||
- name: Download build artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | ||
with: | ||
name: build-artifact | ||
path: dist | ||
|
@@ -74,7 +74,7 @@ jobs: | |
run: echo "VERSION=$(cat dist/version.txt)" >> "${GITHUB_OUTPUT}" | ||
- name: Create Issue | ||
if: ${{ failure() }} | ||
uses: imjohnbo/issue-bot@v3 | ||
uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 | ||
with: | ||
labels: failed-release | ||
title: Publishing v${{ steps.extract-version.outputs.VERSION }} to npm failed | ||
|
@@ -87,15 +87,15 @@ jobs: | |
contents: read | ||
issues: write | ||
steps: | ||
- uses: actions/setup-java@v4 | ||
- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 | ||
with: | ||
distribution: temurin | ||
java-version: 11.x | ||
- uses: actions/setup-node@v4 | ||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | ||
with: | ||
node-version: 16.14.0 | ||
- name: Download build artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | ||
with: | ||
name: build-artifact | ||
path: dist | ||
|
@@ -124,7 +124,7 @@ jobs: | |
run: echo "VERSION=$(cat dist/version.txt)" >> "${GITHUB_OUTPUT}" | ||
- name: Create Issue | ||
if: ${{ failure() }} | ||
uses: imjohnbo/issue-bot@v3 | ||
uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 | ||
with: | ||
labels: failed-release | ||
title: Publishing v${{ steps.extract-version.outputs.VERSION }} to Maven Central failed | ||
|
@@ -137,14 +137,14 @@ jobs: | |
contents: read | ||
issues: write | ||
steps: | ||
- uses: actions/setup-node@v4 | ||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | ||
with: | ||
node-version: 16.14.0 | ||
- uses: actions/setup-python@v5 | ||
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c | ||
with: | ||
python-version: 3.x | ||
- name: Download build artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | ||
with: | ||
name: build-artifact | ||
path: dist | ||
|
@@ -170,7 +170,7 @@ jobs: | |
run: echo "VERSION=$(cat dist/version.txt)" >> "${GITHUB_OUTPUT}" | ||
- name: Create Issue | ||
if: ${{ failure() }} | ||
uses: imjohnbo/issue-bot@v3 | ||
uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 | ||
with: | ||
labels: failed-release | ||
title: Publishing v${{ steps.extract-version.outputs.VERSION }} to PyPI failed | ||
|
@@ -183,14 +183,14 @@ jobs: | |
contents: read | ||
issues: write | ||
steps: | ||
- uses: actions/setup-node@v4 | ||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | ||
with: | ||
node-version: 16.14.0 | ||
- uses: actions/setup-dotnet@v3 | ||
- uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 | ||
with: | ||
dotnet-version: 3.x | ||
- name: Download build artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | ||
with: | ||
name: build-artifact | ||
path: dist | ||
|
@@ -215,7 +215,7 @@ jobs: | |
run: echo "VERSION=$(cat dist/version.txt)" >> "${GITHUB_OUTPUT}" | ||
- name: Create Issue | ||
if: ${{ failure() }} | ||
uses: imjohnbo/issue-bot@v3 | ||
uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 | ||
with: | ||
labels: failed-release | ||
title: Publishing v${{ steps.extract-version.outputs.VERSION }} to NuGet Gallery failed | ||
|
@@ -228,14 +228,14 @@ jobs: | |
contents: read | ||
issues: write | ||
steps: | ||
- uses: actions/setup-node@v4 | ||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | ||
with: | ||
node-version: 16.14.0 | ||
- uses: actions/setup-go@v5 | ||
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 | ||
with: | ||
go-version: ^1.16.0 | ||
- name: Download build artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | ||
with: | ||
name: build-artifact | ||
path: dist | ||
|
@@ -262,7 +262,7 @@ jobs: | |
run: echo "VERSION=$(cat dist/version.txt)" >> "${GITHUB_OUTPUT}" | ||
- name: Create Issue | ||
if: ${{ failure() }} | ||
uses: imjohnbo/issue-bot@v3 | ||
uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 | ||
with: | ||
labels: failed-release | ||
title: Publishing v${{ steps.extract-version.outputs.VERSION }} to GitHub Go Module Repository failed | ||
|
@@ -275,11 +275,11 @@ jobs: | |
contents: write | ||
issues: write | ||
steps: | ||
- uses: actions/setup-node@v4 | ||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | ||
with: | ||
node-version: 16.14.0 | ||
- name: Download build artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | ||
with: | ||
name: build-artifact | ||
path: dist | ||
|
@@ -302,7 +302,7 @@ jobs: | |
run: echo "VERSION=$(cat dist/version.txt)" >> "${GITHUB_OUTPUT}" | ||
- name: Create Issue | ||
if: ${{ failure() }} | ||
uses: imjohnbo/issue-bot@v3 | ||
uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
|
Oops, something went wrong.