Skip to content

Commit

Permalink
Merge pull request #1378 from jluebbe/update-actions
Browse files Browse the repository at this point in the history
.github/workflows: update to actions/checkout@v4
  • Loading branch information
ejoerns committed Apr 5, 2024
2 parents 05772ed + 2b72483 commit dc8c435
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
sudo apt-get update
DEBIAN_FRONTEND='noninteractive' sudo apt-get install -qy buildah
buildah version
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Images
id: build-image
uses: redhat-actions/buildah-build@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
image: ghcr.io/rauc/rauc/rauc-ci:latest
options: --user=root
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
PLATFORM=`uname`
export TOOL_BASE="/tmp/coverity-scan-analysis"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
sudo apt-get update
DEBIAN_FRONTEND='noninteractive' sudo apt-get install -qy meson libtool libglib2.0-dev libcurl3-dev libssl-dev libdbus-1-dev libjson-glib-dev libfdisk-dev libnl-genl-3-dev dbus-x11 clang-tools
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run meson
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
gcc --version
ls -la /usr/bin/clang*
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run meson
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
style:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install codespell
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
gcc --version
ls -l /dev/kvm || true
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Test with service and gpt
run: |
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- "arm64/v8"
- "386"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install QEMU
run: |
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- "debian:bullseye"
- "debian:testing"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# remove this when Ubuntu 24.04 is available on GitHub Actions
- name: Enable Ubuntu noble and update podman
Expand Down

0 comments on commit dc8c435

Please sign in to comment.