From acced522dd26bff921066ca892d430d0fb7a4549 Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Fri, 22 Apr 2022 22:16:07 +0000 Subject: CI: run apt-get update before install to get updated package lists --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d54b5178..ccb05f55e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,8 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 + - name: update package information + run: sudo apt-get update - name: install dependencies run: sudo apt-get install gcc-11 libapparmor-dev libselinux1-dev expect xzdec - name: configure -- cgit v1.2.3-54-g00ecf From 9ffee8bc313419eec60c7dd9b09f32ec41815d14 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Apr 2022 06:14:31 +0000 Subject: build(deps): bump actions/checkout from 3.0.1 to 3.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.1 to 3.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/dcd71f646680f2efd8db4afa5ad64fdcba30e748...2541b1294d2704b0964813337f33b291d3f8596b) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build-extra.yml | 6 +++--- .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/profile-checks.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml index 4f5fc5049..27f11459c 100644 --- a/.github/workflows/build-extra.yml +++ b/.github/workflows/build-extra.yml @@ -30,7 +30,7 @@ jobs: build-clang: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: configure run: CC=clang-11 ./configure --enable-fatal-warnings - name: make @@ -38,7 +38,7 @@ jobs: scan-build: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: install clang-tools-11 run: sudo apt-get install clang-tools-11 - name: configure @@ -48,7 +48,7 @@ jobs: cppcheck: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: install cppcheck run: sudo apt-get install cppcheck - name: cppcheck diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ccb05f55e..faea6970f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: build_and_test: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: update package information run: sudo apt-get update - name: install dependencies diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 69fc8834b..95f00a34e 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -43,7 +43,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/profile-checks.yml b/.github/workflows/profile-checks.yml index 59997db2f..9138e8a57 100644 --- a/.github/workflows/profile-checks.yml +++ b/.github/workflows/profile-checks.yml @@ -20,7 +20,7 @@ jobs: profile-checks: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: sort.py run: ./ci/check/profiles/sort.py etc/inc/*.inc etc/{profile-a-l,profile-m-z}/*.profile - name: private-etc-always-required.sh -- cgit v1.2.3-54-g00ecf