Skip to content

Commit

Permalink
CI: Use latest version of actions/checkout
Browse files Browse the repository at this point in the history
v2 is deprecated because it depends on an ancient version of Node.js. May
as well switch everything to v4.
  • Loading branch information
ptomato committed Jul 25, 2024
1 parent 702b8bb commit 835a459
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
meson \
ninja-build
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Make fake Inform binaries so we don't have to download and build them
# just to run the UI tests
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
image: bilelmoussaoui/flatpak-github-actions:gnome-46
options: --privileged
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
Expand Down Expand Up @@ -63,28 +63,28 @@ jobs:
webkit2gtk4.1-devel
- name: Checkout Inweb
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ganelson/inweb
ref: v7.2.0
path: inweb

- name: Checkout Intest
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ganelson/intest
ref: v2.1.0
path: intest

- name: Checkout Inform
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ganelson/inform
ref: v10.1.2
path: inform

- name: Checkout Inform IDE
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: inform7-ide

Expand Down Expand Up @@ -164,24 +164,24 @@ jobs:
meson
- name: Checkout Inform IDE
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout Inweb
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ganelson/inweb
ref: v7.2.0
path: inweb

- name: Checkout Intest
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ganelson/intest
ref: v2.1.0
path: intest

- name: Checkout Inform
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ganelson/inform
ref: v10.1.2
Expand Down

0 comments on commit 835a459

Please sign in to comment.