fix: update github actions versions (#398)

This commit is contained in:
Victorien Gauch
2024-12-05 14:41:33 +01:00
committed by GitHub
parent 62f552b57d
commit c6fee0c265
8 changed files with 9 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ runs:
steps:
- name: Login to Docker Hub
if: ${{ github.ref == 'refs/heads/main' && inputs.last_commit_tag_exists == '0' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ inputs.docker_username }}
password: ${{ inputs.docker_password }}

View File

@@ -56,7 +56,7 @@ jobs:
NEXT_PUBLIC_INFURA_ID: ${{ secrets.PUBLIC_BRIDGE_UI_INFURA_ID }}
- name: Archive Playwright report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report-headful

View File

@@ -78,7 +78,7 @@ jobs:
output: sarif-results
sarif-file: ${{ matrix.language }}-results.sarif
- name: Upload CodeQL Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: codeql-results-${{ matrix.language }}
path: sarif-results

View File

@@ -74,7 +74,7 @@ jobs:
path: |
${{ github.workspace }}/build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
files: ${{ github.workspace }}/build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml

View File

@@ -50,7 +50,7 @@ jobs:
GOARCH="amd64" go build -tags=nocorset -buildmode=c-shared -o ./target/${TARGET_DECOMPRESSOR}_${VERSION}_linux_x86_64.so ${SRC_DECOMPRESSOR}
- name: Cache built binaries
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: linux-artefacts
path: ./prover/target
@@ -84,7 +84,7 @@ jobs:
GOARCH="arm64" go build -tags=nocorset -buildmode=c-shared -o ./target/${TARGET_COMPRESSOR}_${VERSION}_linux_arm64.so ${SRC_COMPRESSOR}
GOARCH="arm64" go build -tags=nocorset -buildmode=c-shared -o ./target/${TARGET_DECOMPRESSOR}_${VERSION}_linux_arm64.so ${SRC_DECOMPRESSOR}
- name: Cache built binaries
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: linux-arm64-artefacts
path: ./prover/target

View File

@@ -59,7 +59,7 @@ jobs:
run: pnpm -F contracts run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
files: ./contracts/coverage/coverage-final.json

View File

@@ -7,7 +7,7 @@ jobs:
- name: CSV export
uses: advanced-security/ghas-to-csv@v2
- name: Upload CSV
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ghas-data
path: ${{ github.workspace }}/*.csv

View File

@@ -13,7 +13,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0