Skip to content

Commit 413a6e3

Browse files
committed
⬆️ Upgrade action versions
1 parent 50712f2 commit 413a6e3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/badges.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
- name: Download cloc
1919
run: sudo apt-get update -y && sudo apt-get install -y cloc
2020
- name: Get the Numbers

.github/workflows/checks.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout Repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121
- name: Download Clang-Format
2222
run: |
2323
sudo apt update -qq
@@ -33,7 +33,7 @@ jobs:
3333
name: Check Compliance with REUSE Specification
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- name: REUSE Compliance Check
3838
uses: fsfe/reuse-action@v1
3939

@@ -43,12 +43,12 @@ jobs:
4343
if: github.event_name == 'pull_request'
4444
steps:
4545
- name: Checkout Current Repository
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v4
4747
with:
4848
path: current
4949
ref: ${{ github.ref }}
5050
- name: Checkout Base Repository
51-
uses: actions/checkout@v2
51+
uses: actions/checkout@v4
5252
with:
5353
path: base
5454
ref: ${{ github.base_ref }}
@@ -74,7 +74,7 @@ jobs:
7474
name: Run ShellCheck
7575
runs-on: ubuntu-latest
7676
steps:
77-
- uses: actions/checkout@v2
77+
- uses: actions/checkout@v4
7878
- name: Run ShellCheck
7979
run: |
8080
find $GITHUB_WORKSPACE -type f -and \( -name "*.sh" \) | xargs shellcheck
@@ -95,7 +95,7 @@ jobs:
9595
- "gnome-xsession"
9696
- "gnome-wayland-nested"
9797
steps:
98-
- uses: actions/checkout@v2
98+
- uses: actions/checkout@v4
9999
- name: Download Dependencies
100100
run: |
101101
sudo apt update -qq
@@ -104,12 +104,12 @@ jobs:
104104
run: make
105105
- name: Test Fly-Pie
106106
run: sudo $GITHUB_WORKSPACE/tests/run-test.sh -v ${{ matrix.version }} -s ${{ matrix.session }}
107-
- uses: actions/upload-artifact@v2
107+
- uses: actions/upload-artifact@v4
108108
if: failure()
109109
with:
110110
name: log_${{ matrix.version }}_${{ matrix.session }}
111111
path: fail.log
112-
- uses: actions/upload-artifact@v2
112+
- uses: actions/upload-artifact@v4
113113
if: failure()
114114
with:
115115
name: screen_${{ matrix.version }}_${{ matrix.session }}

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
- name: Install Dependencies
1919
run: |
2020
sudo apt-get update -q
@@ -30,4 +30,4 @@ jobs:
3030
asset_name: [email protected]
3131
tag: ${{ github.ref }}
3232
overwrite: true
33-
draft: true
33+
prerelease: true

0 commit comments

Comments
 (0)