Skip to content

Commit 16b9c69

Browse files
author
Gonzalo Diaz
committed
Update actions/checkout digest to de0fac2
1 parent 3755a70 commit 16b9c69

3 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ on: # yamllint disable-line rule:truthy
2929
# │ │ │ │ │
3030
# │ │ │ │ │
3131
# * * * * *
32-
- cron: '16 20 * * 0'
32+
- cron: "16 20 * * 0"
3333

3434
jobs:
3535
analyze:
@@ -40,8 +40,7 @@ jobs:
4040
# - https://gh.io/using-larger-runners (GitHub.com only)
4141
# Consider using larger runners or machines with greater resources
4242
# for possible analysis time improvements.
43-
runs-on:
44-
${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-24.04' }}
43+
runs-on: ${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-24.04' }}
4544
permissions:
4645
# required for all workflows
4746
security-events: write
@@ -71,7 +70,7 @@ jobs:
7170
# yamllint enable rule:line-length
7271
steps:
7372
- name: Checkout repository
74-
uses: actions/checkout@v6
73+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
7574

7675
- name: Check Tools
7776
run: |

.github/workflows/gitleaks.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
32
name: gitleaks
43

54
on: # yamllint disable-line rule:truthy
@@ -22,7 +21,7 @@ jobs:
2221
name: gitleaks
2322
runs-on: ubuntu-24.04
2423
steps:
25-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2625
with:
2726
fetch-depth: 0
2827
- uses: gitleaks/gitleaks-action@v2

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# Directory where build-wrapper output will be placed
1717
BUILD_WRAPPER_OUT_DIR: build
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2020
with:
2121
# Shallow clones should be disabled for a better relevancy of analysis
2222
fetch-depth: 0
@@ -47,7 +47,6 @@ jobs:
4747
export VCPKG_ROOT=/usr/local/share/vcpkg
4848
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} make build
4949
# yamllint enable rule:line-length
50-
5150
- name: Run tests to generate coverage statistics
5251
run: |
5352
make coverage

0 commit comments

Comments
 (0)