aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-extra.yml10
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/codeql-analysis.yml8
-rw-r--r--.github/workflows/profile-checks.yml2
4 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index d5fa4af3c..d31aec004 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -60,7 +60,7 @@ jobs:
60 allowed-endpoints: > 60 allowed-endpoints: >
61 azure.archive.ubuntu.com:80 61 azure.archive.ubuntu.com:80
62 github.com:443 62 github.com:443
63 - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f 63 - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
64 - name: update package information 64 - name: update package information
65 run: sudo apt-get update 65 run: sudo apt-get update
66 - name: install dependencies 66 - name: install dependencies
@@ -83,7 +83,7 @@ jobs:
83 allowed-endpoints: > 83 allowed-endpoints: >
84 azure.archive.ubuntu.com:80 84 azure.archive.ubuntu.com:80
85 github.com:443 85 github.com:443
86 - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f 86 - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
87 - name: update package information 87 - name: update package information
88 run: sudo apt-get update 88 run: sudo apt-get update
89 - name: install clang-tools-14 and dependencies 89 - name: install clang-tools-14 and dependencies
@@ -102,7 +102,7 @@ jobs:
102 allowed-endpoints: > 102 allowed-endpoints: >
103 azure.archive.ubuntu.com:80 103 azure.archive.ubuntu.com:80
104 github.com:443 104 github.com:443
105 - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f 105 - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
106 - name: update package information 106 - name: update package information
107 run: sudo apt-get update 107 run: sudo apt-get update
108 - name: install cppcheck 108 - name: install cppcheck
@@ -121,7 +121,7 @@ jobs:
121 allowed-endpoints: > 121 allowed-endpoints: >
122 azure.archive.ubuntu.com:80 122 azure.archive.ubuntu.com:80
123 github.com:443 123 github.com:443
124 - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f 124 - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
125 - name: update package information 125 - name: update package information
126 run: sudo apt-get update 126 run: sudo apt-get update
127 - name: install cppcheck 127 - name: install cppcheck
@@ -138,7 +138,7 @@ jobs:
138 allowed-endpoints: > 138 allowed-endpoints: >
139 azure.archive.ubuntu.com:80 139 azure.archive.ubuntu.com:80
140 github.com:443 140 github.com:443
141 - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f 141 - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
142 - name: update package information 142 - name: update package information
143 run: sudo apt-get update 143 run: sudo apt-get update
144 - name: install dependencies 144 - name: install dependencies
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ee370dc32..9008408ae 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -56,7 +56,7 @@ jobs:
56 www.debian.org:443 56 www.debian.org:443
57 www.debian.org:80 57 www.debian.org:80
58 yahoo.com:1025 58 yahoo.com:1025
59 - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f 59 - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
60 - name: update package information 60 - name: update package information
61 run: sudo apt-get update 61 run: sudo apt-get update
62 - name: install dependencies 62 - name: install dependencies
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 6495f3618..cdbf1f2bf 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -84,11 +84,11 @@ jobs:
84 uploads.github.com:443 84 uploads.github.com:443
85 85
86 - name: Checkout repository 86 - name: Checkout repository
87 uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f 87 uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
88 88
89 # Initializes the CodeQL tools for scanning. 89 # Initializes the CodeQL tools for scanning.
90 - name: Initialize CodeQL 90 - name: Initialize CodeQL
91 uses: github/codeql-action/init@168b99b3c22180941ae7dbdd5f5c9678ede476ba 91 uses: github/codeql-action/init@04df1262e6247151b5ac09cd2c303ac36ad3f62b
92 with: 92 with:
93 languages: ${{ matrix.language }} 93 languages: ${{ matrix.language }}
94 # If you wish to specify custom queries, you can do so here or in a config file. 94 # If you wish to specify custom queries, you can do so here or in a config file.
@@ -99,7 +99,7 @@ jobs:
99 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 99 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
100 # If this step fails, then you should remove it and run the build manually (see below) 100 # If this step fails, then you should remove it and run the build manually (see below)
101 - name: Autobuild 101 - name: Autobuild
102 uses: github/codeql-action/autobuild@168b99b3c22180941ae7dbdd5f5c9678ede476ba 102 uses: github/codeql-action/autobuild@04df1262e6247151b5ac09cd2c303ac36ad3f62b
103 103
104 # ℹī¸ Command-line programs to run using the OS shell. 104 # ℹī¸ Command-line programs to run using the OS shell.
105 # 📚 https://git.io/JvXDl 105 # 📚 https://git.io/JvXDl
@@ -113,4 +113,4 @@ jobs:
113 # make release 113 # make release
114 114
115 - name: Perform CodeQL Analysis 115 - name: Perform CodeQL Analysis
116 uses: github/codeql-action/analyze@168b99b3c22180941ae7dbdd5f5c9678ede476ba 116 uses: github/codeql-action/analyze@04df1262e6247151b5ac09cd2c303ac36ad3f62b
diff --git a/.github/workflows/profile-checks.yml b/.github/workflows/profile-checks.yml
index 29e484e38..8212c646e 100644
--- a/.github/workflows/profile-checks.yml
+++ b/.github/workflows/profile-checks.yml
@@ -33,7 +33,7 @@ jobs:
33 allowed-endpoints: > 33 allowed-endpoints: >
34 github.com:443 34 github.com:443
35 35
36 - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f 36 - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
37# - name: sort.py 37# - name: sort.py
38# run: ./ci/check/profiles/sort.py etc/inc/*.inc etc/{profile-a-l,profile-m-z}/*.profile 38# run: ./ci/check/profiles/sort.py etc/inc/*.inc etc/{profile-a-l,profile-m-z}/*.profile
39# Currently broken (see #5610) 39# Currently broken (see #5610)