Skip to content

Commit

Permalink
updated to v3 actions
Browse files Browse the repository at this point in the history
  • Loading branch information
techthoughts2 committed Dec 16, 2023
1 parent 138743a commit d6181ca
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/wf_Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@ on:
push:
paths-ignore:
- '**.md'
- 'media/**'
- 'docs/**'
- 'LICENSE'
pull_request:
paths-ignore:
- '**.md'
- 'media/**'
- 'docs/**'
- 'LICENSE'

jobs:
test:
name: Run Tests
Expand All @@ -25,7 +24,7 @@ jobs:
fail-fast: false
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Display the path
shell: pwsh
run: echo ${env:PATH}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wf_MacOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ on:
push:
paths-ignore:
- '**.md'
- 'media/**'
- 'docs/**'
- 'LICENSE'
pull_request:
paths-ignore:
- '**.md'
- 'media/**'
- 'docs/**'
- 'LICENSE'
jobs:
test:
Expand All @@ -24,7 +24,7 @@ jobs:
fail-fast: false
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Display the path
shell: pwsh
run: echo ${env:PATH}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wf_Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ on:
push:
paths-ignore:
- '**.md'
- 'media/**'
- 'docs/**'
- 'LICENSE'
pull_request:
paths-ignore:
- '**.md'
- 'media/**'
- 'docs/**'
- 'LICENSE'
jobs:
test:
Expand All @@ -24,7 +24,7 @@ jobs:
fail-fast: false
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Display the path
shell: powershell
run: echo ${env:PATH}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wf_Windows_Core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ on:
push:
paths-ignore:
- '**.md'
- 'media/**'
- 'docs/**'
- 'LICENSE'
pull_request:
paths-ignore:
- '**.md'
- 'media/**'
- 'docs/**'
- 'LICENSE'
jobs:
test:
Expand All @@ -24,7 +24,7 @@ jobs:
fail-fast: false
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Display the path
shell: pwsh
run: echo ${env:PATH}
Expand Down
5 changes: 4 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Module Changes
- Build Updates
- Updated all Github action files to:
- support ignore certain files for Readthedocs implementation
- updated actions from `v2` to `v3`
- Moved `CHANGELOG.md` from `.github` to `docs`
- Bumped dependencies to latest versions
- `actions_bootstrap.ps1` - bumped module versions to latest
- Misc
- Updated `settings.json` for tab requirements to support Readthedocs
- Added `SECURITY.md`
Expand Down

0 comments on commit d6181ca

Please sign in to comment.