Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*: Update GitHub Actions tags #265

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion container/container-rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: {% raw %}${{ github.event.inputs.git-tag }}{% endraw %}
{%- if container_needs_git_tags %}
Expand Down
2 changes: 1 addition & 1 deletion container/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
{%- if container_needs_git_tags %}
with:
# fetch tags so the compiled-in version number is useful
Expand Down
2 changes: 1 addition & 1 deletion go/tests-ignition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
go-version: {% raw %}${{ matrix.go-version }}{% endraw %}
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build ignition-validate
shell: bash
run: go build -o ignition-validate github.com/coreos/ignition/v2/validate
Expand Down
4 changes: 2 additions & 2 deletions go/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
go-version: {% raw %}${{ matrix.go-version }}{% endraw %}
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
{%- if go_dependencies %}
- name: Install Go dependencies
run: go get {{ go_dependencies | join(sep=" ") }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions rust/rpm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install packages
run: dnf install -y git make mock
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
# fetch tags for versioning
with:
fetch-depth: 0
Expand All @@ -41,7 +41,7 @@ jobs:
mock --rebuild --enablerepo=updates-testing rpms/*.src.rpm
find /var/lib/mock -wholename '*/result/*.rpm' | xargs mv -t rpms
- name: Archive RPMs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rpms
path: rpms/
10 changes: 5 additions & 5 deletions rust/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
with:
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
with:
Expand All @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
{%- if msrv == "auto" %}
- name: Detect crate MSRV
run: |
Expand All @@ -90,7 +90,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
with:
Expand All @@ -111,7 +111,7 @@ jobs:
channel: [beta, nightly]
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion shellcheck/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
# https://github.com/actions/checkout/issues/760
- name: Mark git checkout as safe
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
Expand Down
Loading