Skip to content

Commit

Permalink
fix warnings in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dbluelle committed May 28, 2023
1 parent 308fdf7 commit 89a2cfc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Delete Development Release
uses: dev-drprasad/delete-tag-and-release@v0.2.1
env:
Expand All @@ -31,7 +31,7 @@ jobs:
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
tag_name: ${{ steps.tag_name.outputs.tag_name }}
version: ${{ steps.changelog.outputs.version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Generate body from ChangeLog
id: changelog
Expand All @@ -39,14 +39,14 @@ jobs:

mxe32:
name: Release 32-bit Windows Installer
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
continue-on-error: false
needs: draft_release
env:
CFLAGS: -std=c11
CXXFLAGS: -std=c++11
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Add MXE Repository to Apt
uses: myci-actions/add-deb-repo@4
Expand Down Expand Up @@ -107,14 +107,14 @@ jobs:

mxe64:
name: Release 64-bit Windows Installer
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
continue-on-error: false
needs: draft_release
env:
CFLAGS: -std=c11
CXXFLAGS: -std=c++11
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Add MXE Repository to Apt
uses: myci-actions/add-deb-repo@4
Expand Down

0 comments on commit 89a2cfc

Please sign in to comment.