From b1ef84095433a9a1ef2d1551029533208e492454 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 23 Jan 2025 12:09:35 -0500 Subject: [PATCH 1/5] update checkout version to v4 --- .github/workflows/dev.yaml | 6 +++--- .github/workflows/prod.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index 03e578f..ed260ac 100644 --- a/.github/workflows/dev.yaml +++ b/.github/workflows/dev.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Python 3.9 uses: actions/setup-python@v2 with: @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest needs: version_check steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Node.js 16.15.1 uses: actions/setup-node@v3 with: @@ -40,7 +40,7 @@ jobs: runs-on: self-hosted needs: build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download build artifacts uses: actions/download-artifact@v3 with: diff --git a/.github/workflows/prod.yaml b/.github/workflows/prod.yaml index 3c0b291..fe5110f 100644 --- a/.github/workflows/prod.yaml +++ b/.github/workflows/prod.yaml @@ -19,7 +19,7 @@ jobs: node-version: [16.15.1] steps: - name: Download Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 From f617d8602f21ed6141ff9ed191ccefe3f0b67a67 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 23 Jan 2025 12:10:10 -0500 Subject: [PATCH 2/5] update upload-artifact to v4 --- .github/workflows/dev.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index ed260ac..b87cfc0 100644 --- a/.github/workflows/dev.yaml +++ b/.github/workflows/dev.yaml @@ -32,7 +32,7 @@ jobs: yarn install yarn build - name: Upload build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: craco_build_output path: build/** @@ -42,7 +42,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: craco_build_output path: build From 20d3edbbc026da6ada1a981f6326d2e6c8f10f54 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 23 Jan 2025 12:10:26 -0500 Subject: [PATCH 3/5] update setup node & python to v4 --- .github/workflows/dev.yaml | 4 ++-- .github/workflows/prod.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index b87cfc0..ce3ac4f 100644 --- a/.github/workflows/dev.yaml +++ b/.github/workflows/dev.yaml @@ -13,7 +13,7 @@ jobs: - name: Download Code uses: actions/checkout@v4 - name: Install Python 3.9 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.9 - name: Version Check @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Node.js 16.15.1 - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 16.15.1 - run: | diff --git a/.github/workflows/prod.yaml b/.github/workflows/prod.yaml index fe5110f..b060655 100644 --- a/.github/workflows/prod.yaml +++ b/.github/workflows/prod.yaml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v4 - name: Install Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} From 2ca5d93ac4ba77d0303550a5c00a5f13f586f2af Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 23 Jan 2025 12:12:07 -0500 Subject: [PATCH 4/5] `CHANGELOG.md` updated --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eceb89..8e52ee2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +### Changed +- GitHub action versions (checkout, download-artifact, upload-artifact, setup-node, setup-python) ## [0.5] - 2025-01-15 ### Added - Support `Reddit` From 38b21ad3b42ccb92991e29808a7d6641bd2a5dc2 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 23 Jan 2025 19:28:05 -0500 Subject: [PATCH 5/5] `CHANGELOG.md` updated --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e52ee2..a34f120 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Added ### Changed -- GitHub action versions (checkout, download-artifact, upload-artifact, setup-node, setup-python) +- GitHub action versions updated ## [0.5] - 2025-01-15 ### Added - Support `Reddit`