Ignore:
Timestamp:
2024-02-22T16:45:28+01:00 (3 months ago)
Author:
taylor.smock
Message:

Update actions to ones that support node 20 (patch by guylamar2006, see https://github.com/JOSM/josm/pull/136 )

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/ant-test.yml

    r18936 r18993  
    2525    steps:
    2626      - name: Checkout
    27         uses: actions/checkout@v3
     27        uses: actions/checkout@v4
    2828        with:
    2929          fetch-depth: 256
    3030
    3131      - name: Cache
    32         uses: actions/cache@v3
     32        uses: actions/cache@v4
    3333        with:
    3434          path: |
     
    3838
    3939      - name: Setup Java ${{ matrix.java }}
    40         uses: actions/setup-java@v3
     40        uses: actions/setup-java@v4
    4141        with:
    4242          distribution: 'zulu'
     
    5757      - name: Upload Ant reports
    5858        if: ${{ always() }}
    59         uses: actions/upload-artifact@v3
     59        uses: actions/upload-artifact@v4
    6060        with:
    6161          name: Ant reports for JOSM ${{ needs.createrelease.outputs.josm_revision }} on java ${{ matrix.java }} on ${{ matrix.os }}
     
    7474    steps:
    7575      - name: Download Artifacts
    76         uses: actions/download-artifact@v3
     76        uses: actions/download-artifact@v4
    7777        with:
    7878          path: artifacts
     
    8080      - name: Publish Test Report with action-junit-report
    8181        if: ${{ always() }}
    82         uses: mikepenz/action-junit-report@v3
     82        uses: mikepenz/action-junit-report@v4
    8383        with:
    8484          report_paths: 'artifacts/**/*.xml'
Note: See TracChangeset for help on using the changeset viewer.