Skip to content

Commit ab4248d

Browse files
chore(deps): update github actions
1 parent dfc47b1 commit ab4248d

6 files changed

Lines changed: 30 additions & 30 deletions

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
release: ${{ steps.genver.outputs.release }}
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
@@ -43,7 +43,7 @@ jobs:
4343
GENVERSION: ${{ needs.versionning.outputs.version }}
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
4747
with:
4848
ref: ${{ github.ref }}
4949
submodules: true
@@ -68,19 +68,19 @@ jobs:
6868
VERSION: ${{ needs.versionning.outputs.version }}
6969
steps:
7070
- name: Checkout
71-
uses: actions/checkout@v3
71+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
7272
with:
7373
ref: ${{ github.ref }}
7474

7575
- name: Set up QEMU
76-
uses: docker/setup-qemu-action@v2
76+
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
7777

7878
- name: Set up Docker Buildx
7979
id: buildx
80-
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
80+
uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # v3
8181

8282
- name: login
83-
uses: docker/login-action@v2
83+
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2
8484
with:
8585
username: ${{ secrets.DOCKER_HUB_LOGIN }}
8686
password: ${{ secrets.DOCKER_HUB_TOKEN }}
@@ -114,7 +114,7 @@ jobs:
114114
runs-on: ubuntu-latest
115115
steps:
116116
- name: Checkout
117-
uses: actions/checkout@v3
117+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
118118
with:
119119
ref: ${{ github.ref }}
120120

@@ -127,7 +127,7 @@ jobs:
127127
aws: true
128128

129129
- name: Checkout Infra
130-
uses: actions/checkout@v3
130+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
131131
with:
132132
repository: aneoconsulting/ArmoniK
133133
path: infra
@@ -213,7 +213,7 @@ jobs:
213213
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
214214
215215
- name: 'Upload Artifact'
216-
uses: actions/upload-artifact@v3
216+
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
217217
with:
218218
name: end2end-${{ matrix.tls }}-${{ matrix.mtls }}-${{ matrix.sslvalidation }}-${{ matrix.useca }}.tar.gz
219219
path: end2end-${{ matrix.tls }}-${{ matrix.mtls }}-${{ matrix.sslvalidation }}-${{ matrix.useca }}.tar.gz
@@ -229,7 +229,7 @@ jobs:
229229
VERSION: ${{ needs.versionning.outputs.version }}
230230
steps:
231231
- name: Checkout
232-
uses: actions/checkout@v3
232+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
233233
with:
234234
ref: ${{ github.ref }}
235235

@@ -242,7 +242,7 @@ jobs:
242242
aws: true
243243

244244
- name: Checkout Infra
245-
uses: actions/checkout@v3
245+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
246246
with:
247247
repository: aneoconsulting/ArmoniK
248248
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
timeout-minutes: 15
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
12+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
1313
with:
1414
ref: ${{ github.ref }}
1515

.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@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # 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@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # 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@692973e3d937129bcbf40652eb9f2f61becf3332 # 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@e12d46a63a90f2fae62d114769bbf2a179198b5c # 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@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
3333
with:
3434
path: .\.sonar\scanner
3535
key: ${{ runner.os }}-sonar-scanner

0 commit comments

Comments
 (0)