Skip to content

Commit

Permalink
ci: Bump GitHub actions requirements
Browse files Browse the repository at this point in the history
Signed-off-by: Daiki Ueno <ueno@gnu.org>
  • Loading branch information
ueno committed Apr 26, 2024
1 parent 53db617 commit 23617bd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
Expand All @@ -43,6 +43,6 @@ jobs:
meson compile -C _build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"
22 changes: 11 additions & 11 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
image: ghcr.io/p11-glue/p11-kit:master
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/basic-autotools
Expand All @@ -27,7 +27,7 @@ jobs:
image: ghcr.io/p11-glue/p11-kit:master
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- run: dnf remove -y libtasn1-devel
Expand All @@ -39,7 +39,7 @@ jobs:
image: ghcr.io/p11-glue/p11-kit:master
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- run: dnf remove -y libtasn1-devel
Expand All @@ -53,7 +53,7 @@ jobs:
MESON_BUILD_OPTS: -Db_sanitize=address
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/basic-meson
Expand All @@ -66,7 +66,7 @@ jobs:
MESON_BUILD_OPTS: -Db_sanitize=undefined
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/basic-meson
Expand All @@ -79,7 +79,7 @@ jobs:
SCAN_BUILD: scan-build --status-bugs
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/basic-meson
Expand All @@ -94,7 +94,7 @@ jobs:
WINEPATH: /usr/x86_64-w64-mingw32/sys-root/mingw/bin
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/basic-meson
Expand All @@ -107,7 +107,7 @@ jobs:
PROFILE: cppcheck
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- run: |
Expand All @@ -121,7 +121,7 @@ jobs:
MESON_BUILD_OPTS: -Db_coverage=true
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/basic-meson
Expand All @@ -139,7 +139,7 @@ jobs:
MESON_BUILD_OPTS: -Dclosures=0
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
Expand All @@ -159,7 +159,7 @@ jobs:
MESON_BUILD_OPTS: -Db_sanitize=address -Db_sanitize=undefined -Dclosures=0
steps:
# Checkout repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/basic-meson

0 comments on commit 23617bd

Please sign in to comment.