Skip to content

Commit

Permalink
CI: Update action versions
Browse files Browse the repository at this point in the history
"Node.js 16 actions are deprecated. Please update the following actions
to use Node.js 20"
  • Loading branch information
lah7 committed Apr 4, 2024
1 parent b46a95d commit 661b190
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
# Checks out under $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check series file
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
sudo apt-get install libgif-dev libelf-dev
- name: Cache GTK Source
uses: actions/cache@v3
uses: actions/cache@v4
id: gtksrc
with:
path: 'gtk+*.tar.xz'
Expand Down Expand Up @@ -84,23 +84,23 @@ jobs:
steps:
# Checks out under $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get GTK Version
run: |
source PKGBUILD
echo "GTK_VERSION=${_gtkver}" >> $GITHUB_ENV
- name: Cache Pacman Packages
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: pacman-cache
with:
path: ~/pacman-cache
key: pacman-cache

- name: Cache GTK Source
uses: actions/cache@v3
uses: actions/cache@v4
id: gtksrc
with:
path: 'gtk+*.tar.xz'
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
docker rm archlinux
- name: Upload Package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: gtk3-classic-run${{github.run_number}}-pkg
path: gtk3-classic-*.pkg*

0 comments on commit 661b190

Please sign in to comment.