Skip to content

Commit

Permalink
Merge pull request #367 from FluidityProject/fix_github_actions_warnings
Browse files Browse the repository at this point in the history
Update versions of actions to avoid deprecation warnings
  • Loading branch information
stephankramer authored Dec 3, 2022
2 parents 65474cc + 1872bd5 commit 9202d40
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ jobs:
steps:

- name: Check Out Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: .
file: docker/actions/Dockerfile.actions.${{ matrix.release }}
Expand Down Expand Up @@ -105,13 +105,13 @@ jobs:
docker pull fluidity/actions:${{ matrix.release }}-${{ github.sha }}
docker run -v $PWD:/host fluidity/actions:${{ matrix.release }}-${{ github.sha }} /bin/bash -c "${{ matrix.command }} && cp -v tests/${{ matrix.output }} /host/${{ matrix.release }}-${{ matrix.output}}"
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: ${{ matrix.release }}-${{ matrix.output }}
name: tests_xml_outputs

- name: ${{ matrix.name }} JUnit
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v3
with:
report_paths: ${{ matrix.release }}-${{ matrix.output }}
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -238,13 +238,13 @@ jobs:
docker pull fluidity/actions:jammy-${{ github.sha }}
docker run -v $PWD:/host fluidity/actions:jammy-${{ github.sha }} /bin/bash -c "git clone https://github.com/fluidityproject/longtests && bin/testharness -x test_results_${{ matrix.name }}.xml -f ${{ matrix.name }}.xml && cp -v test_results_${{ matrix.name }}.xml /host"
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: test_results_${{ matrix.name }}.xml
name: tests_xml_outputs

- name: ${{ matrix.name }} JUnit
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v3
with:
report_paths: test_results_${{ matrix.name }}.xml
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 9202d40

Please sign in to comment.