2323 # Steps represent a sequence of tasks that will be executed as part of the job
2424 steps :
2525 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26- - uses : actions/checkout@v3
26+ - uses : actions/checkout@v4
2727
2828 # The version string
2929 - name : Set Version Environment Variable
@@ -55,14 +55,14 @@ jobs:
5555
5656 # Publish artifacts
5757 - name : Upload mod DLLs
58- uses : actions/upload-artifact@v3
58+ uses : actions/upload-artifact@v4
5959 with :
6060 name : CSM ${{ steps.csm_version.outputs.version }}
6161 path : src/csm/bin/Release/*.dll
6262
6363 # Publish install script
6464 - name : Upload install script
65- uses : actions/upload-artifact@v3
65+ uses : actions/upload-artifact@v4
6666 with :
6767 name : CSM ${{ steps.csm_version.outputs.version }}
6868 path : scripts/install.ps1
8484 runs-on : ubuntu-latest
8585 steps :
8686 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
87- - uses : actions/checkout@v3
87+ - uses : actions/checkout@v4
8888
8989 - name : Build Docker Image
9090 working-directory : src/gs
@@ -102,7 +102,7 @@ jobs:
102102 if : github.ref == 'refs/heads/master'
103103
104104 - name : Upload Docker Image
105- uses : actions/upload-artifact@v3
105+ uses : actions/upload-artifact@v4
106106 with :
107107 name : API Server Docker Image
108108 path : apiserver.tar
0 commit comments