Skip to content

Commit 962e212

Browse files
chore(deps): update github actions
1 parent 63e96ff commit 962e212

File tree

6 files changed

+32
-32
lines changed

6 files changed

+32
-32
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
release: ${{ steps.genver.outputs.release }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
2323
with:
2424
ref: ${{ github.ref }}
2525
fetch-depth: 0
@@ -46,7 +46,7 @@ jobs:
4646
GENVERSION: ${{ needs.versionning.outputs.version }}
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
5050
with:
5151
ref: ${{ github.ref }}
5252
submodules: true
@@ -71,19 +71,19 @@ jobs:
7171
VERSION: ${{ needs.versionning.outputs.version }}
7272
steps:
7373
- name: Checkout
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
7575
with:
7676
ref: ${{ github.ref }}
7777

7878
- name: Set up QEMU
79-
uses: docker/setup-qemu-action@v2
79+
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
8080

8181
- name: Set up Docker Buildx
8282
id: buildx
83-
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
83+
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
8484

8585
- name: login
86-
uses: docker/login-action@v2
86+
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2
8787
with:
8888
username: ${{ secrets.DOCKER_HUB_LOGIN }}
8989
password: ${{ secrets.DOCKER_HUB_TOKEN }}
@@ -117,7 +117,7 @@ jobs:
117117
runs-on: ubuntu-latest
118118
steps:
119119
- name: Checkout
120-
uses: actions/checkout@v3
120+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
121121
with:
122122
ref: ${{ github.ref }}
123123

@@ -130,7 +130,7 @@ jobs:
130130
aws: true
131131

132132
- name: Checkout Infra
133-
uses: actions/checkout@v3
133+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
134134
with:
135135
repository: aneoconsulting/ArmoniK
136136
path: infra
@@ -219,7 +219,7 @@ jobs:
219219
aws s3 cp end2end-${{ matrix.tls }}-${{ matrix.mtls }}-${{ matrix.sslvalidation }}-${{ matrix.useca }}.tar.gz s3://${{ secrets.AWS_LOG_BUCKET_NAME }}/extcsharp-pipeline/${{ github.run_number }}/${{ github.run_attempt }}/end2end-${{ matrix.tls }}-${{ matrix.mtls }}-${{ matrix.sslvalidation }}-${{ matrix.useca }}.tar.gz
220220
221221
- name: 'Upload Artifact'
222-
uses: actions/upload-artifact@v3
222+
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
223223
with:
224224
name: end2end-${{ matrix.tls }}-${{ matrix.mtls }}-${{ matrix.sslvalidation }}-${{ matrix.useca }}.tar.gz
225225
path: end2end-${{ matrix.tls }}-${{ matrix.mtls }}-${{ matrix.sslvalidation }}-${{ matrix.useca }}.tar.gz
@@ -235,7 +235,7 @@ jobs:
235235
VERSION: ${{ needs.versionning.outputs.version }}
236236
steps:
237237
- name: Checkout
238-
uses: actions/checkout@v3
238+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
239239
with:
240240
ref: ${{ github.ref }}
241241

@@ -248,7 +248,7 @@ jobs:
248248
aws: true
249249

250250
- name: Checkout Infra
251-
uses: actions/checkout@v3
251+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
252252
with:
253253
repository: aneoconsulting/ArmoniK
254254
path: infra

.github/workflows/build_documentations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1515

1616
- name: Get dotnet sdk
1717
run: |
@@ -28,7 +28,7 @@ jobs:
2828
docfx Documentation/docfx.json
2929
3030
- name: Deploy docfx documentation
31-
uses: peaceiris/actions-gh-pages@v3
31+
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3
3232
with:
3333
github_token: ${{ secrets.GITHUB_TOKEN }}
3434
publish_dir: Documentation/_site

.github/workflows/code-formatting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
timeout-minutes: 15
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
12+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1313
with:
1414
ref: ${{ github.ref }}
1515

1616
- name: Install .NET Core
17-
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3
17+
uses: actions/setup-dotnet@ea9897a6e57642ca932850b656df2880bc7cd2a8 # v3
1818
with:
1919
dotnet-version: 6.x
2020

@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
git diff > patch-csharp.diff
5252
53-
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
53+
- uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
5454
if: ${{ failure() && steps.check-diff.conclusion == 'failure' }}
5555
with:
5656
name: patch-csharp

.github/workflows/make-release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
release: ${{ steps.release.outputs.version }}
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
2020
with:
2121
ref: ${{ github.ref }}
2222
fetch-depth: 0
@@ -33,15 +33,15 @@ jobs:
3333
3434
- name: Generate Snapshot Version
3535
id: snapshot
36-
uses: codacy/git-version@2.7.1
36+
uses: codacy/git-version@80c816f11db8dea5e3a81025f598193015b51832 # 2.8.0
3737
with:
3838
minor-identifier: "feat:"
3939
release-branch: ${{ github.ref_name }}-pre
4040
dev-branch: ${{ steps.rev.outputs.current-branch }}
4141

4242
- name: Generate Release Version
4343
id: release
44-
uses: codacy/git-version@2.7.1
44+
uses: codacy/git-version@80c816f11db8dea5e3a81025f598193015b51832 # 2.8.0
4545
with:
4646
minor-identifier: "feat:"
4747
release-branch: ${{ steps.rev.outputs.current-branch }}
@@ -67,7 +67,7 @@ jobs:
6767
GENRELEASE: ${{ needs.versionning.outputs.release }}
6868
steps:
6969
- name: Checkout
70-
uses: actions/checkout@v3
70+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
7171
with:
7272
ref: ${{ github.ref }}
7373
submodules: true
@@ -88,20 +88,20 @@ jobs:
8888
- versionning
8989
steps:
9090
- name: Checkout
91-
uses: actions/checkout@v3
91+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
9292
with:
9393
ref: ${{ github.ref }}
9494
submodules: true
9595

9696
- name: Set up QEMU
97-
uses: docker/setup-qemu-action@v2
97+
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
9898

9999
- name: Set up Docker Buildx
100100
id: buildx
101-
uses: docker/setup-buildx-action@v2
101+
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2
102102

103103
- name: login
104-
uses: docker/login-action@v2
104+
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2
105105
with:
106106
username: ${{ secrets.DOCKER_HUB_LOGIN }}
107107
password: ${{ secrets.DOCKER_HUB_TOKEN }}
@@ -110,7 +110,7 @@ jobs:
110110
run: echo ${{ steps.buildx.outputs.platforms }}
111111

112112
- name: Build and push
113-
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 # v4
113+
uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4
114114
with:
115115
file: Worker/src/DLLWorker/Dockerfile
116116
context: .

.github/workflows/semantic-pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
name: Validate PR title
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: amannn/action-semantic-pull-request@v5
20+
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5
2121
id: lint_pr_title
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424

25-
- uses: marocchino/sticky-pull-request-comment@v2
25+
- uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2
2626
# When the previous steps fails, the workflow would stop. By adding this
2727
# condition you can continue the execution with the populated error message.
2828
if: always() && (steps.lint_pr_title.outputs.error_message != null)
@@ -37,7 +37,7 @@ jobs:
3737
```
3838
# Delete a previous comment when the issue has been resolved
3939
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
40-
uses: marocchino/sticky-pull-request-comment@v2
40+
uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2
4141
with:
4242
header: pr-title-lint-error
4343
delete: true

.github/workflows/sonar.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@ jobs:
1212
runs-on: windows-latest
1313
steps:
1414
- name: Set up JDK
15-
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v3
15+
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
1616
with:
1717
distribution: 'zulu'
1818
java-version: 17
19-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
19+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2020
with:
2121
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2222
submodules: true
2323

2424
- name: Cache SonarCloud packages
25-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
25+
uses: actions/cache@58c1e461ab4154b5b12d40cb0e84792b845ab8ba # v3
2626
with:
2727
path: .\.sonar\cache
2828
key: ${{ runner.os }}-sonar
2929
restore-keys: ${{ runner.os }}-sonar
3030
- name: Cache SonarCloud scanner
3131
id: cache-sonar-scanner
32-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
32+
uses: actions/cache@58c1e461ab4154b5b12d40cb0e84792b845ab8ba # v3
3333
with:
3434
path: .\.sonar\scanner
3535
key: ${{ runner.os }}-sonar-scanner

0 commit comments

Comments
 (0)