Skip to content

Commit

Permalink
CI: update checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
sgallagher committed Jan 26, 2024
1 parent 903408a commit c100aff
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

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

- name: Install dependencies
run: $GITHUB_WORKSPACE/.ci/fedora/get_fedora_deps.sh
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
run: dnf -y install git-core

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

- name: Install dependencies
run: $GITHUB_WORKSPACE/.ci/fedora/get_fedora_deps.sh
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:

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

- name: Install dependencies
run: $GITHUB_WORKSPACE/.ci/fedora/get_fedora_deps.sh
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
run: dnf -y install git-core

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

- name: Install dependencies
run: $GITHUB_WORKSPACE/.ci/fedora/get_fedora_deps.sh
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
run: pacman -Syu --needed --noconfirm base-devel file git glib2 glib2-docs gobject-introspection gtk-doc jq libyaml meson python-gobject python-six valgrind

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

- name: Set up the build directory
run:
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
wget

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

- name: Set up the build directory
run: meson setup --buildtype=debugoptimized ci $GITHUB_WORKSPACE
Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:
valgrind

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

- name: Set up the build directory
run: meson setup --buildtype=debugoptimized ci $GITHUB_WORKSPACE
Expand Down Expand Up @@ -445,7 +445,7 @@ jobs:
elinks

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

- name: Set up the build directory
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/formatters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install formatters
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multiarch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
distro: fedora_latest

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

- uses: uraimo/run-on-arch-action@v2
name: Perform upstream tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
if: github.repository == 'fedora-modularity/libmodulemd'
steps:
- name: Checkout code repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout documentation repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: fedora-modularity/fedora-modularity.github.io
ref: main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/upstreamed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
if: github.repository == 'fedora-modularity/libmodulemd'
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Coverity Scan
env:
Expand All @@ -25,10 +25,10 @@ jobs:
if: github.repository == 'fedora-modularity/libmodulemd'
steps:
- name: Checkout code repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout documentation repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: fedora-modularity/fedora-modularity.github.io
ref: main
Expand Down

0 comments on commit c100aff

Please sign in to comment.