diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04c286ce..5a94d398 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: env: COLOR: "ON" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.inputs.ref }} - name: Install Dependencies @@ -48,7 +48,7 @@ jobs: python3-xcbgen \ libuv1-dev \ xcb-proto - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true ref: ${{ github.event.inputs.ref }} @@ -115,7 +115,7 @@ jobs: if [ "$POLYBAR_BUILD_TYPE" = "tests" ]; then sudo apt-get install -y lcov fi - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true ref: ${{ github.event.inputs.ref }} @@ -157,7 +157,7 @@ jobs: verbose: true - name: Upload Logs if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: cmake path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0c408d7..1fd317c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: } >> "$GITHUB_ENV" # Checks out the target tag - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ env.RELEASE_TAG }} submodules: true @@ -55,7 +55,7 @@ jobs: - name: Get Upload URL id: get_upload_url - uses: actions/github-script@v3 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -83,7 +83,7 @@ jobs: # Adds a download section to the beginning of the release body - name: Update Release Body - uses: actions/github-script@v3 + uses: actions/github-script@v7 env: # Existing release body, fetched in the get_upload_url step. RELEASE_BODY: ${{ env.RELEASE_BODY }}