Skip to content

Commit 3d05f79

Browse files
committed
ci: pinact
1 parent addd876 commit 3d05f79

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/artifacts-directory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
echo "fuga" > ./directory/fuga.txt
2222
echo "foo" > ./directory/bin/foo.txt
2323
echo "bar" > ./directory/bin/bar.txt
24-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
24+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
2525
with:
2626
name: directory
2727
path: ./directory/

.github/workflows/artifacts-file.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: output
1818
run: |
1919
echo "hoge" > ./hoge.txt
20-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
20+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
2121
with:
2222
name: hoge.txt
2323
path: ./hoge.txt

.github/workflows/artifacts-targz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
echo "foo" > ./output/bin/foo.txt
2323
echo "bar" > ./output/bin/bar.txt
2424
tar -zcvf output.tar.gz ./output/
25-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
25+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
2626
with:
2727
name: output.tar.gz
2828
path: ./output.tar.gz

.github/workflows/crlf-checker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# comment to PR for CRLF files.
6161
- if: ${{ github.event_name == 'pull_request' && env.CRLF_FILES != '' }}
6262
name: Comment PR
63-
uses: thollander/actions-comment-pull-request@e4a76dd2b0a3c2027c3fd84147a67c22ee4c90fa # v3
63+
uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1
6464
with:
6565
message: |
6666
[${{ github.workflow }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) found CRLF files as follows.

.github/workflows/dotnet-build-only-tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: dotnet build ./src/dotnet -c Release
3333
- run: dotnet test ./src/dotnet -c Release --logger GitHubActions --logger "console;verbosity=normal"
3434
- run: dotnet publish ./src/dotnet -c Release
35-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
35+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
3636
with:
3737
name: dotnet-console
3838
path: ./src/dotnet/artifacts/publish/Sandbox.Console/
@@ -52,7 +52,7 @@ jobs:
5252
- run: dotnet build ./src/dotnet -c Release
5353
- run: dotnet test ./src/dotnet -c Release --logger GitHubActions --logger "console;verbosity=normal"
5454
- run: dotnet publish ./src/dotnet -c Release -o ./out/dotnet-console-container
55-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
55+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5656
with:
5757
name: dotnet-container
5858
path: ./out/dotnet-console-container/

.github/workflows/dotnet-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: dotnet test ./src/dotnet -c Debug --logger GitHubActions --logger "console;verbosity=normal"
2626
- name: dotnet publish
2727
run: dotnet publish ./src/dotnet -c Debug
28-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
28+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
2929
with:
3030
name: dotnet-console
3131
path: ./src/dotnet/artifacts/publish/Sandbox.Console/
@@ -48,7 +48,7 @@ jobs:
4848
run: dotnet test ./src/dotnet -c Debug --logger GitHubActions --logger "console;verbosity=normal"
4949
- name: dotnet publish
5050
run: dotnet publish ./src/dotnet -c Debug -o ./out/dotnet-console-container
51-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
51+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5252
with:
5353
name: dotnet-container
5454
path: ./out/dotnet-console-container/

0 commit comments

Comments
 (0)