mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 20:27:58 -05:00
fix: update github actions versions (#398)
This commit is contained in:
@@ -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 }}
|
||||
|
||||
2
.github/workflows/bridge-ui-e2e-tests.yml
vendored
2
.github/workflows/bridge-ui-e2e-tests.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/codeql.yml
vendored
2
.github/workflows/codeql.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/coordinator-testing.yml
vendored
2
.github/workflows/coordinator-testing.yml
vendored
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
2
.github/workflows/run-smc-tests.yml
vendored
2
.github/workflows/run-smc-tests.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/security-report-to-csv.yml
vendored
2
.github/workflows/security-report-to-csv.yml
vendored
@@ -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
|
||||
|
||||
@@ -13,7 +13,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user