mirror of
https://github.com/opencontainers/runc.git
synced 2026-06-24 08:48:44 +00:00
build(deps): bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@@ -48,7 +48,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: Show host info
|
||||
run: |
|
||||
@@ -171,7 +171,7 @@ jobs:
|
||||
steps:
|
||||
|
||||
- name: checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: install deps
|
||||
run: |
|
||||
@@ -219,7 +219,7 @@ jobs:
|
||||
template: [almalinux-8, almalinux-9, centos-stream-10, fedora, experimental/fedora-rawhide]
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
|
||||
- uses: lima-vm/lima-actions/setup@v1
|
||||
id: lima-actions-setup
|
||||
|
||||
30
.github/workflows/validate.yml
vendored
30
.github/workflows/validate.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
||||
keyring:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: check runc.keyring
|
||||
run: make validate-keyring
|
||||
|
||||
@@ -32,7 +32,7 @@ jobs:
|
||||
checks: write # to allow the action to annotate code in the PR.
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
with:
|
||||
fetch-depth: 2
|
||||
- uses: actions/setup-go@v6
|
||||
@@ -55,7 +55,7 @@ jobs:
|
||||
modernize:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
with:
|
||||
fetch-depth: 2
|
||||
- uses: actions/setup-go@v6
|
||||
@@ -80,7 +80,7 @@ jobs:
|
||||
# Don't ignore C warnings. Note that the output of "go env CGO_CFLAGS" by default is "-g -O2", so we keep them.
|
||||
CGO_CFLAGS: -g -O2 -Werror
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: install go
|
||||
uses: actions/setup-go@v6
|
||||
with:
|
||||
@@ -100,7 +100,7 @@ jobs:
|
||||
codespell:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: install deps
|
||||
# Version of codespell bundled with Ubuntu is way old, so use pip.
|
||||
run: pip install --break-system-packages codespell==v2.4.1
|
||||
@@ -110,14 +110,14 @@ jobs:
|
||||
shfmt:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: shfmt
|
||||
run: make shfmt
|
||||
|
||||
shellcheck:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: install shellcheck
|
||||
env:
|
||||
VERSION: v0.11.0
|
||||
@@ -141,14 +141,14 @@ jobs:
|
||||
space-at-eol:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- run: rm -fr vendor
|
||||
- run: if git -P grep -I -n '\s$'; then echo "^^^ extra whitespace at EOL, please fix"; exit 1; fi
|
||||
|
||||
deps:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: install go
|
||||
uses: actions/setup-go@v6
|
||||
with:
|
||||
@@ -193,7 +193,7 @@ jobs:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
- name: install deps
|
||||
run: |
|
||||
sudo apt -qq update
|
||||
@@ -206,7 +206,7 @@ jobs:
|
||||
check-go:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: check Go version
|
||||
run: |
|
||||
GO_VER=$(awk -F= '/^ARG\s+GO_VERSION=/ {print $2; quit}' Dockerfile)
|
||||
@@ -221,7 +221,7 @@ jobs:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: check CHANGELOG.md
|
||||
run: make verify-changelog
|
||||
@@ -249,7 +249,7 @@ jobs:
|
||||
get-images:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: install bashbrew
|
||||
env:
|
||||
BASEURL: https://github.com/docker-library/bashbrew/releases/download
|
||||
@@ -273,7 +273,7 @@ jobs:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: install runc and conmon deps
|
||||
# XXX maybe switch to conmon/hack/github-actions-setup if the burden
|
||||
@@ -303,7 +303,7 @@ jobs:
|
||||
file-install: false
|
||||
|
||||
- name: checkout conmon
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
repository: containers/conmon
|
||||
path: conmon
|
||||
|
||||
Reference in New Issue
Block a user